/* ========================================================================== 
   G-RAM ENERGY DYNAMICS — Premium static website
   Framework-free design system · Desktop / tablet / mobile
   ========================================================================== */

@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 100 1000;
    font-display: swap;
    src: url("../assets/fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 100 800;
    font-display: swap;
    src: url("../assets/fonts/sora-latin.woff2") format("woff2");
}

:root {
    color-scheme: dark;
    --ink-950: #030806;
    --ink-900: #06100d;
    --ink-850: #081612;
    --ink-800: #0b1d17;
    --ink-750: #10271f;
    --ink-700: #15352a;
    --forest: #064f3b;
    --forest-bright: #087155;
    --lime: #9cf66d;
    --lime-bright: #c8ff76;
    --lime-soft: #dcffb8;
    --sun: #f4b84a;
    --sun-soft: #ffd986;
    --ice: #b8e7dc;
    --white: #ffffff;
    --cream: #f2f4ed;
    --cream-dark: #e4e9df;
    --smoke: #c7d0c9;
    --muted: #8f9f96;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.2);
    --line-dark: rgba(6, 16, 13, 0.14);
    --glass: rgba(8, 22, 18, 0.66);
    --glass-light: rgba(255, 255, 255, 0.07);
    --shadow-sm: 0 10px 32px rgba(0, 0, 0, 0.18);
    --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.27);
    --shadow-lg: 0 42px 130px rgba(0, 0, 0, 0.38);
    --shadow-lime: 0 18px 62px rgba(156, 246, 109, 0.18);
    --radius-xs: 8px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-xl: 52px;
    --radius-pill: 999px;
    --container: min(1240px, calc(100% - 64px));
    --container-wide: min(1480px, calc(100% - 48px));
    --header-height: 88px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.16, 1.35, 0.3, 1);
    --transition-fast: 180ms var(--ease);
    --transition: 420ms var(--ease);
    --transition-slow: 900ms var(--ease);
}

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

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 28px);
    background: var(--ink-950);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(17, 105, 74, 0.18), transparent 36rem),
        var(--ink-900);
    color: var(--white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: opacity 360ms ease, transform 360ms var(--ease), filter 360ms ease;
}

body.is-leaving {
    opacity: 0;
    transform: translateY(9px);
    filter: blur(4px);
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--lime);
    color: var(--ink-950);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ink-950);
}

::-webkit-scrollbar-thumb {
    border: 3px solid var(--ink-950);
    border-radius: var(--radius-pill);
    background: var(--forest-bright);
}

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

img,
video {
    height: auto;
}

button,
input,
select,
textarea {
    margin: 0;
    color: inherit;
    font: inherit;
}

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

button {
    border: 0;
    cursor: pointer;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
figure,
dl,
dd {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(3.4rem, 7.4vw, 8.6rem);
}

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

h3 {
    font-size: clamp(1.35rem, 2vw, 2.15rem);
}

strong {
    font-weight: 700;
}

:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10001;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--lime);
    color: var(--ink-950);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform var(--transition-fast);
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.container-wide {
    width: var(--container-wide);
    margin-inline: auto;
}

.section {
    position: relative;
    overflow-x: hidden;
    padding-block: clamp(92px, 11vw, 178px);
}

@supports (overflow: clip) {
    html,
    body,
    .section {
        overflow-x: clip;
    }
}

.section--tight {
    padding-block: clamp(74px, 8vw, 118px);
}

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

.section--deep {
    background: var(--ink-950);
    color: var(--white);
}

.section--cream {
    color-scheme: light;
    background: var(--cream);
    color: var(--ink-900);
}

.section--cream-soft {
    color-scheme: light;
    background: #e9eee6;
    color: var(--ink-900);
}

.section--forest {
    background:
        radial-gradient(circle at 100% 0%, rgba(156, 246, 109, 0.13), transparent 33rem),
        var(--forest);
    color: var(--white);
}

.section-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section-orb {
    position: absolute;
    width: 34rem;
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.12;
    background: var(--lime);
}

.section-orb--left {
    left: -18rem;
    top: 12%;
}

.section-orb--right {
    right: -20rem;
    bottom: 5%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-bright);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 25px;
    height: 1px;
    content: "";
    background: currentColor;
}

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

.eyebrow--light {
    color: rgba(255, 255, 255, 0.72);
}

.eyebrow--no-line::before {
    display: none;
}

.text-gradient {
    color: transparent;
    background: linear-gradient(100deg, var(--lime) 0%, var(--lime-bright) 46%, var(--sun-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.56);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    gap: clamp(36px, 7vw, 112px);
    align-items: end;
    margin-bottom: clamp(46px, 6vw, 88px);
}

.section-heading__title {
    max-width: 850px;
}

.section-heading__title .eyebrow {
    margin-bottom: 24px;
}

.section-heading__title h2 {
    text-wrap: balance;
}

.section-heading__copy {
    max-width: 510px;
    color: var(--smoke);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.section--cream .section-heading__copy,
.section--cream-soft .section-heading__copy {
    color: #53625a;
}

.section-heading--stack {
    display: block;
}

.section-heading--stack .section-heading__copy {
    max-width: 690px;
    margin-top: 28px;
}

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

.button {
    position: relative;
    display: inline-flex;
    min-height: 58px;
    padding: 0 25px;
    overflow: hidden;
    isolation: isolate;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition-fast);
}

.button::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-105%) skewX(-16deg);
    transition: transform 680ms var(--ease);
}

.button:hover::before {
    transform: translateX(105%) skewX(-16deg);
}

.button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition);
}

.button:hover svg {
    transform: translate(3px, -1px);
}

.button--lime {
    background: var(--lime);
    color: var(--ink-950);
    box-shadow: 0 0 0 rgba(156, 246, 109, 0);
}

.button--lime:hover {
    background: var(--lime-bright);
    box-shadow: var(--shadow-lime);
}

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

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

.button--ghost {
    border-color: var(--line-dark);
    background: rgba(255, 255, 255, 0.32);
    color: var(--ink-900);
    backdrop-filter: blur(12px);
}

.button--ghost:hover {
    border-color: var(--forest-bright);
    background: var(--white);
}

.button--ghost-light {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button--ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.button--compact {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 0.68rem;
}

.text-link {
    display: inline-flex;
    padding-block: 5px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color var(--transition-fast), gap var(--transition);
}

.text-link:hover {
    gap: 18px;
    color: var(--forest-bright);
}

.text-link svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

/* Loading sequence ------------------------------------------------------- */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--ink-950);
    transition: opacity 700ms ease 160ms, visibility 700ms ease 160ms;
}

.loader::before,
.loader::after {
    position: absolute;
    width: 48vw;
    height: 100%;
    content: "";
    background: var(--ink-850);
    transition: transform 950ms var(--ease);
}

.loader::before {
    left: 0;
    transform-origin: left;
}

.loader::after {
    right: 0;
    transform-origin: right;
}

.loader__inner {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 25px;
    text-align: center;
}

.loader__mark {
    width: 76px;
    color: var(--lime);
    animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader__mark svg {
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.loader__name {
    display: grid;
    gap: 7px;
    place-items: center;
    font-family: "Sora", sans-serif;
    line-height: 1;
}

.loader__name strong {
    font-size: clamp(1.45rem, 3.4vw, 2.75rem);
    font-weight: 760;
    letter-spacing: 0.2em;
}

.loader__name small {
    color: rgba(255, 255, 255, 0.52);
    font-family: "DM Sans", sans-serif;
    font-size: clamp(0.52rem, 1vw, 0.67rem);
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.loader__line {
    width: min(270px, 60vw);
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
}

.loader__line::after {
    display: block;
    width: 52%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    animation: loaderLine 1.35s ease-in-out infinite;
}

body.is-loaded .loader {
    visibility: hidden;
    opacity: 0;
}

body.is-loaded .loader::before {
    transform: translateX(-110%);
}

body.is-loaded .loader::after {
    transform: translateX(110%);
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.55; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes loaderLine {
    from { transform: translateX(-130%); }
    to { transform: translateX(260%); }
}

/* Global pointer light -------------------------------------------------- */

.pointer-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    background: radial-gradient(520px circle at var(--pointer-x, 50vw) var(--pointer-y, 50vh), rgba(156, 246, 109, 0.055), transparent 64%);
}

main,
[data-site-footer] {
    position: relative;
    z-index: 1;
}

/* Header / navigation --------------------------------------------------- */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    width: 100%;
    height: 2px;
    background: transparent;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--lime), var(--sun));
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    transition:
        height var(--transition),
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
}

.site-header.is-scrolled {
    height: 72px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 8, 6, 0.78);
    backdrop-filter: blur(24px) saturate(140%);
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.site-header__shell {
    display: grid;
    height: 100%;
    grid-template-columns: auto 1fr auto;
    gap: clamp(24px, 4vw, 70px);
    align-items: center;
}

.site-logo {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 16px rgba(156, 246, 109, 0.16));
    transition: transform var(--transition-slow), filter var(--transition);
}

.site-logo:hover .brand-mark {
    filter: drop-shadow(0 0 20px rgba(156, 246, 109, 0.34));
    transform: rotate(12deg);
}

.site-logo__type {
    display: grid;
    min-width: 138px;
    gap: 5px;
}

.site-logo__type strong {
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    font-weight: 760;
    letter-spacing: 0.15em;
    line-height: 0.9;
}

.site-logo__type strong span {
    color: var(--lime);
}

.site-logo__type small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 1.2vw, 20px);
}

.desktop-nav__group {
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-nav__link,
.header-text-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    padding-inline: 11px;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.desktop-nav__link::after {
    position: absolute;
    right: 11px;
    bottom: 5px;
    left: 11px;
    height: 1px;
    content: "";
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.desktop-nav__link:hover,
.desktop-nav__link.is-active,
.header-text-link:hover {
    color: var(--white);
}

.desktop-nav__link:hover::after,
.desktop-nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.desktop-nav__link svg {
    width: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    transition: transform var(--transition);
}

.desktop-nav__group:hover .desktop-nav__link svg {
    transform: rotate(180deg);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    display: grid;
    width: min(890px, 78vw);
    padding: 18px;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 10px;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(5, 16, 12, 0.94);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    backdrop-filter: blur(26px) saturate(135%);
    transform: translate(-50%, 15px) scale(0.98);
    transform-origin: top center;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.desktop-nav__group:hover .mega-menu,
.desktop-nav__group:focus-within .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.mega-menu::before {
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    height: 20px;
    content: "";
}

.mega-menu__intro {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border-radius: var(--radius-sm);
    background:
        radial-gradient(circle at 90% 10%, rgba(156, 246, 109, 0.17), transparent 12rem),
        var(--forest);
}

.mega-menu__intro strong {
    font-family: "Sora", sans-serif;
    font-size: 1.18rem;
    line-height: 1.25;
}

.mega-menu__intro a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lime-bright);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mega-menu__intro a svg {
    width: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.mega-menu__card {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 22px 18px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.mega-menu__card::after {
    position: absolute;
    right: -30px;
    bottom: -45px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    content: "";
    background: var(--lime);
    opacity: 0;
    filter: blur(38px);
    transition: opacity var(--transition);
}

.mega-menu__card:hover {
    border-color: rgba(156, 246, 109, 0.32);
    background: rgba(156, 246, 109, 0.07);
    transform: translateY(-3px);
}

.mega-menu__card:hover::after {
    opacity: 0.25;
}

.mega-menu__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(156, 246, 109, 0.12);
    color: var(--lime);
}

.mega-menu__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mega-menu__card > span:last-child {
    display: grid;
    gap: 5px;
}

.mega-menu__card small {
    color: var(--lime);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.mega-menu__card strong {
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
}

.mega-menu__card em {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
    font-style: normal;
    line-height: 1.45;
}

.menu-toggle,
.menu-close {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.menu-toggle svg,
.menu-close svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1002;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.54);
    opacity: 0;
    backdrop-filter: blur(5px);
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;
    display: flex;
    width: min(520px, 100%);
    height: 100dvh;
    padding: 28px clamp(24px, 6vw, 54px) 36px;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(156, 246, 109, 0.14), transparent 22rem),
        var(--ink-850);
    box-shadow: -24px 0 90px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    transition: transform 650ms var(--ease), visibility 650ms var(--ease);
}

body.menu-open .menu-backdrop,
body.menu-open .mobile-menu {
    visibility: visible;
}

body.menu-open .menu-backdrop {
    opacity: 1;
}

body.menu-open .mobile-menu {
    transform: translateX(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav {
    display: grid;
    width: 100%;
    margin-block: auto;
}

.mobile-nav > a,
.mobile-nav__toggle {
    display: flex;
    width: 100%;
    padding-block: clamp(13px, 2.5vh, 24px);
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: inherit;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 5.5vw, 2.85rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    text-align: left;
    transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav > a > span,
.mobile-nav__toggle > span {
    color: var(--lime);
    font-family: "DM Sans", sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.mobile-nav__toggle > strong {
    font: inherit;
}

.mobile-nav__toggle > svg {
    width: 22px;
    margin-left: auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform var(--transition);
}

.mobile-nav__group.is-open .mobile-nav__toggle > svg {
    transform: rotate(180deg);
}

.mobile-nav > a:hover,
.mobile-nav__toggle:hover,
.mobile-nav__toggle.is-active {
    padding-left: 10px;
    color: var(--lime-bright);
}

.mobile-nav__submenu {
    display: grid;
    overflow: hidden;
    grid-template-rows: 0fr;
    visibility: hidden;
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition:
        grid-template-rows 560ms var(--ease),
        opacity 320ms ease,
        border-color 320ms ease,
        visibility 0s linear 560ms;
}

.mobile-nav__submenu-inner {
    display: grid;
    min-height: 0;
    overflow: hidden;
    padding-block: 0;
    transition: padding var(--transition);
}

.mobile-nav__group.is-open .mobile-nav__submenu {
    grid-template-rows: 1fr;
    visibility: visible;
    border-color: var(--line);
    opacity: 1;
    transition:
        grid-template-rows 560ms var(--ease),
        opacity 320ms ease 80ms,
        border-color 320ms ease,
        visibility 0s;
}

.mobile-nav__group.is-open .mobile-nav__submenu-inner {
    padding-block: 8px 14px;
}

.mobile-nav__submenu a {
    display: grid;
    padding: 12px 8px 12px clamp(36px, 9vw, 70px);
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 13px;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav__submenu a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.mobile-nav__submenu a:hover,
.mobile-nav__submenu a.is-active {
    color: var(--lime-bright);
    transform: translateX(5px);
}

.mobile-nav__subindex {
    color: var(--lime);
    font-size: 0.55rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-nav__subcopy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.mobile-nav__subcopy strong {
    font-family: "Sora", sans-serif;
    font-size: clamp(0.96rem, 4vw, 1.2rem);
    font-weight: 650;
    letter-spacing: -0.025em;
}

.mobile-nav__subcopy small {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-nav__submenu a > svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.mobile-nav__all {
    margin-top: 3px;
    border-radius: 13px;
    background: rgba(156, 246, 109, 0.075);
}

.mobile-menu__footer {
    display: grid;
    gap: 20px;
}

.mobile-menu__footer p {
    color: var(--smoke);
}

/* Reveal system --------------------------------------------------------- */

.js .reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.js .reveal-stagger > * {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

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

.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.js .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* Home hero ------------------------------------------------------------- */

.hero-home {
    position: relative;
    display: flex;
    min-height: max(820px, 100svh);
    overflow: hidden;
    align-items: flex-end;
    background: var(--ink-950);
}

.hero-home__media {
    position: absolute;
    inset: 0;
}

body[data-page="home"] .hero-home__media {
    background: url("../assets/images/hero-residential-solar-v2.webp") 68% center / cover no-repeat;
}

.hero-home__media img,
.hero-home__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.035);
    transition: transform 1.2s var(--ease);
}

.hero-home__media video {
    opacity: 0;
    transition: opacity 900ms var(--ease), transform 1.2s var(--ease);
}

.hero-home__media video.is-media-ready {
    opacity: 1;
}

.hero-home__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(3, 8, 6, 0.93) 0%, rgba(3, 8, 6, 0.7) 35%, rgba(3, 8, 6, 0.15) 72%, rgba(3, 8, 6, 0.32) 100%),
        linear-gradient(0deg, var(--ink-950) 0%, transparent 30%, rgba(3, 8, 6, 0.22) 100%);
}

.hero-home__noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero-home__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: linear-gradient(90deg, transparent calc(25% - 0.5px), rgba(255,255,255,.07) 25%, transparent calc(25% + .5px), transparent calc(50% - .5px), rgba(255,255,255,.07) 50%, transparent calc(50% + .5px), transparent calc(75% - .5px), rgba(255,255,255,.07) 75%, transparent calc(75% + .5px));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 82%);
}

.hero-home__shell {
    position: relative;
    z-index: 2;
    width: var(--container-wide);
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: clamp(112px, 14vh, 160px);
    margin-inline: auto;
}

.hero-home__content {
    max-width: 940px;
}

.hero-home__kicker {
    display: flex;
    margin-bottom: clamp(28px, 4vh, 46px);
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-home__kicker i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 7px rgba(156, 246, 109, 0.11), 0 0 24px var(--lime);
    animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(0.82); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
}

.hero-home h1 {
    max-width: 1040px;
    font-size: clamp(4rem, 8.7vw, 9.35rem);
    line-height: 0.88;
    text-wrap: balance;
}

.hero-home h1 .hero-word {
    display: block;
    overflow: hidden;
}

.hero-home h1 .hero-word > span {
    display: block;
    transform: translateY(115%);
    transition: transform 1.1s var(--ease) 420ms;
}

.hero-home h1 .hero-word:nth-child(2) > span {
    transition-delay: 560ms;
}

.hero-home h1 .hero-word:nth-child(3) > span {
    transition-delay: 700ms;
}

body.is-loaded .hero-home h1 .hero-word > span {
    transform: translateY(0);
}

.hero-home__bottom {
    display: grid;
    max-width: 940px;
    margin-top: clamp(36px, 6vh, 64px);
    grid-template-columns: minmax(260px, 0.75fr) 1fr;
    gap: clamp(34px, 7vw, 100px);
    align-items: end;
}

.hero-home__bottom p {
    max-width: 490px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.65;
}

.hero-home__status {
    position: absolute;
    right: 0;
    bottom: clamp(110px, 14vh, 155px);
    display: grid;
    width: 232px;
    padding: 22px;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(7, 18, 14, 0.54);
    backdrop-filter: blur(18px);
}

.hero-home__status-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-home__status-top span:last-child {
    color: var(--lime);
}

.hero-home__status strong {
    font-family: "Sora", sans-serif;
    font-size: 2.35rem;
    letter-spacing: -0.06em;
    line-height: 1;
}

.hero-home__status strong small {
    margin-left: 4px;
    color: var(--smoke);
    font-family: "DM Sans", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0;
}

.energy-bars {
    display: flex;
    height: 35px;
    align-items: end;
    gap: 5px;
}

.energy-bars span {
    width: 100%;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(to top, var(--forest-bright), var(--lime));
    animation: energyBar 2.8s var(--ease) infinite alternate;
}

.energy-bars span:nth-child(1) { height: 25%; animation-delay: -1.7s; }
.energy-bars span:nth-child(2) { height: 48%; animation-delay: -0.9s; }
.energy-bars span:nth-child(3) { height: 38%; animation-delay: -2.1s; }
.energy-bars span:nth-child(4) { height: 72%; animation-delay: -0.4s; }
.energy-bars span:nth-child(5) { height: 62%; animation-delay: -1.3s; }
.energy-bars span:nth-child(6) { height: 92%; animation-delay: -2.4s; }
.energy-bars span:nth-child(7) { height: 78%; animation-delay: -0.7s; }
.energy-bars span:nth-child(8) { height: 100%; animation-delay: -1.8s; }

@keyframes energyBar {
    to { transform: scaleY(0.62); opacity: 0.64; }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll::before {
    width: 1px;
    height: 48px;
    content: "";
    background: linear-gradient(to bottom, var(--lime), transparent);
    animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-marquee {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 56px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: rgba(3, 8, 6, 0.7);
    backdrop-filter: blur(16px);
}

.hero-marquee__track {
    display: flex;
    width: max-content;
    height: 100%;
    align-items: center;
    animation: marquee 28s linear infinite;
}

.hero-marquee__track span {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-marquee__track span::after {
    width: 7px;
    height: 7px;
    margin-inline: 36px;
    border-radius: 50%;
    content: "";
    background: var(--lime);
    box-shadow: 0 0 14px rgba(156, 246, 109, 0.5);
}

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

/* Generic page hero ----------------------------------------------------- */

.page-hero {
    position: relative;
    display: flex;
    min-height: min(900px, 92svh);
    padding-top: var(--header-height);
    overflow: hidden;
    align-items: flex-end;
    background: var(--ink-950);
}

.page-hero--compact {
    min-height: 650px;
}

.page-hero__media {
    position: absolute;
    inset: 0;
}

body[data-page="photovoltaik"] .page-hero__media {
    background: url("../assets/images/commercial-solar-roof-v2.webp") 58% center / cover no-repeat;
}

body[data-page="energie"] .page-hero__media {
    background: url("../assets/images/ev-solar-charging-v2.webp") 62% center / cover no-repeat;
}

body[data-page="unternehmen"] .page-hero__media {
    background: url("../assets/images/pv-consultation-v2.webp") 56% center / cover no-repeat;
}

.page-hero__media img,
.page-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform 1.2s var(--ease);
}

.page-hero__media video {
    opacity: 0;
    transition: opacity 900ms var(--ease), transform 1.2s var(--ease);
}

.page-hero__media video.is-media-ready {
    opacity: 1;
}

.page-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(3, 8, 6, 0.92), rgba(3, 8, 6, 0.58) 50%, rgba(3, 8, 6, 0.2)),
        linear-gradient(0deg, var(--ink-950), transparent 45%);
}

.page-hero__shell {
    position: relative;
    z-index: 2;
    display: grid;
    width: var(--container-wide);
    padding-block: clamp(90px, 12vh, 140px) clamp(88px, 11vh, 126px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(42px, 8vw, 130px);
    align-items: end;
}

.page-hero__content {
    max-width: 990px;
}

.page-hero__content .eyebrow {
    margin-bottom: 27px;
}

.page-hero__content h1 {
    font-size: clamp(3.6rem, 7.5vw, 8.6rem);
    line-height: 0.92;
    text-wrap: balance;
}

.page-hero__aside {
    display: grid;
    padding-left: 25px;
    gap: 28px;
    border-left: 1px solid var(--line-strong);
}

.page-hero__aside p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.page-hero__fact {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
}

.page-hero__fact strong {
    display: block;
    margin-bottom: 2px;
    color: var(--lime);
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    hyphens: auto;
    overflow-wrap: anywhere;
}

.page-hero__fact span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Intro statement ------------------------------------------------------- */

.intro-statement {
    position: relative;
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    gap: clamp(40px, 9vw, 150px);
    align-items: start;
}

.intro-statement__index {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
    color: #66746c;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.intro-statement__index::after {
    width: 1px;
    height: 110px;
    content: "";
    background: linear-gradient(to bottom, var(--forest-bright), transparent);
}

.intro-statement__content {
    max-width: 970px;
}

.intro-statement__content h2 {
    margin-bottom: clamp(34px, 5vw, 68px);
    font-size: clamp(2.5rem, 5.15vw, 6.2rem);
    line-height: 1.02;
    text-wrap: balance;
}

.intro-statement__content > p {
    max-width: 730px;
    margin-left: auto;
    color: #53625a;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.intro-tags {
    display: flex;
    margin-top: 42px;
    margin-left: auto;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 730px;
}

.intro-tags span {
    display: inline-flex;
    min-height: 38px;
    padding-inline: 16px;
    align-items: center;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.4);
    color: #34463c;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.04em;
}

/* Solution bento -------------------------------------------------------- */

.solution-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 18px;
}

.solution-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --spot-x: 50%;
    --spot-y: 50%;
    position: relative;
    min-height: 470px;
    padding: clamp(26px, 3vw, 42px);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: var(--ink-800);
    box-shadow: var(--shadow-sm);
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: border-color var(--transition), box-shadow var(--transition), transform 180ms ease;
}

.solution-card::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    content: "";
    opacity: 0;
    background: radial-gradient(380px circle at var(--spot-x) var(--spot-y), rgba(156, 246, 109, 0.17), transparent 60%);
    transition: opacity var(--transition);
}

.solution-card:hover {
    border-color: rgba(156, 246, 109, 0.3);
    box-shadow: var(--shadow-md);
}

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

.solution-card--large {
    grid-column: span 7;
}

.solution-card--medium {
    grid-column: span 5;
}

.solution-card--wide {
    grid-column: span 8;
    min-height: 390px;
}

.solution-card--small {
    grid-column: span 4;
    min-height: 390px;
}

.solution-card__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.solution-card__media img,
.solution-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.solution-card:hover .solution-card__media img,
.solution-card:hover .solution-card__media video {
    transform: scale(1.055);
}

.solution-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(0deg, rgba(3, 8, 6, 0.96) 0%, rgba(3, 8, 6, 0.62) 48%, rgba(3, 8, 6, 0.08) 100%),
        linear-gradient(90deg, rgba(3, 8, 6, 0.35), transparent);
}

.solution-card__top,
.solution-card__bottom {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.solution-card__top {
    align-items: flex-start;
}

.solution-card__number {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.solution-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: rgba(3, 8, 6, 0.34);
    color: var(--lime);
    backdrop-filter: blur(12px);
    transition: color var(--transition), background-color var(--transition), transform var(--transition);
}

.solution-card__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card:hover .solution-card__icon {
    background: var(--lime);
    color: var(--ink-950);
    transform: rotate(8deg) scale(1.05);
}

.solution-card__bottom {
    position: absolute;
    right: clamp(26px, 3vw, 42px);
    bottom: clamp(26px, 3vw, 42px);
    left: clamp(26px, 3vw, 42px);
    align-items: end;
}

.solution-card__copy {
    max-width: 570px;
}

.solution-card__copy span {
    display: block;
    margin-bottom: 12px;
    color: var(--lime);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.solution-card__copy h3 {
    margin-bottom: 13px;
    font-size: clamp(1.75rem, 3.3vw, 3.55rem);
}

.solution-card__copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
}

.solution-card__arrow {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-950);
    transition: transform var(--transition), background-color var(--transition);
}

.solution-card__arrow svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card:hover .solution-card__arrow {
    background: var(--lime-bright);
    transform: rotate(45deg);
}

.solution-card--graphic {
    background:
        radial-gradient(circle at 78% 28%, rgba(156, 246, 109, 0.18), transparent 18rem),
        linear-gradient(140deg, var(--ink-750), var(--ink-900));
}

.solution-card__product {
    position: absolute;
    top: 5%;
    right: -2%;
    width: min(56%, 480px);
    height: 74%;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.4));
    transition: transform 1s var(--ease), filter 1s var(--ease);
}

.solution-card:hover .solution-card__product {
    filter: drop-shadow(0 45px 60px rgba(0, 0, 0, 0.55));
    transform: translateY(-10px) scale(1.025);
}

.solution-card__rings {
    position: absolute;
    top: 6%;
    right: 5%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(156, 246, 109, 0.2);
    border-radius: 50%;
    opacity: 0.6;
}

.solution-card__rings::before,
.solution-card__rings::after {
    position: absolute;
    inset: 14%;
    border: inherit;
    border-radius: inherit;
    content: "";
}

.solution-card__rings::after {
    inset: 30%;
    background: rgba(156, 246, 109, 0.06);
    animation: ringPulse 3.2s ease infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(0.85); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Metrics / facts ------------------------------------------------------- */

.metric-strip {
    display: grid;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    position: relative;
    min-height: 210px;
    padding: 36px clamp(22px, 3vw, 42px);
    border-right: 1px solid var(--line-dark);
}

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

.metric__top {
    display: flex;
    margin-bottom: 44px;
    align-items: center;
    justify-content: space-between;
    color: #64736b;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.metric__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--forest-bright);
}

.metric strong {
    display: block;
    color: var(--ink-900);
    font-family: "Sora", sans-serif;
    font-size: clamp(2.4rem, 4.7vw, 5rem);
    font-weight: 650;
    letter-spacing: -0.075em;
    line-height: 0.9;
}

.metric strong small {
    margin-left: 4px;
    color: var(--forest-bright);
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0;
}

.metric > p {
    margin-top: 13px;
    color: #5f6d65;
    font-size: 0.78rem;
}

/* Split story ----------------------------------------------------------- */

.split-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
    gap: clamp(45px, 8vw, 120px);
    align-items: center;
}

.split-story--reverse {
    grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.05fr);
}

.split-story__visual {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--ink-800);
    box-shadow: var(--shadow-md);
}

.split-story__visual > img,
.split-story__visual > video {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.split-story__visual::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(0deg, rgba(3, 8, 6, 0.4), transparent 50%);
}

.split-story__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: grid;
    width: 154px;
    height: 154px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(3, 8, 6, 0.6);
    text-align: center;
    backdrop-filter: blur(16px);
}

.split-story__badge strong {
    display: block;
    color: var(--lime);
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.split-story__badge span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.split-story__content .eyebrow {
    margin-bottom: 24px;
}

.split-story__content h2 {
    margin-bottom: 28px;
    font-size: clamp(2.45rem, 4.4vw, 5.2rem);
    text-wrap: balance;
}

.split-story__lead {
    color: var(--smoke);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.section--cream .split-story__lead,
.section--cream-soft .split-story__lead {
    color: #53625a;
}

.feature-checks {
    display: grid;
    margin-block: 38px 42px;
    gap: 0;
    border-top: 1px solid var(--line);
}

.section--cream .feature-checks,
.section--cream-soft .feature-checks {
    border-color: var(--line-dark);
}

.feature-check {
    display: grid;
    min-height: 70px;
    padding-block: 15px;
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.section--cream .feature-check,
.section--cream-soft .feature-check {
    border-color: var(--line-dark);
}

.feature-check__icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(156, 246, 109, 0.12);
    color: var(--lime);
}

.section--cream .feature-check__icon,
.section--cream-soft .feature-check__icon {
    background: rgba(8, 113, 85, 0.1);
    color: var(--forest-bright);
}

.feature-check__icon svg {
    width: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-check strong {
    font-size: 0.88rem;
}

.feature-check > span:last-child {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
}

/* Video stage ----------------------------------------------------------- */

.video-stage {
    position: relative;
    min-height: min(780px, 78vw);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--ink-800);
    box-shadow: var(--shadow-lg);
}

.video-stage video,
.video-stage > img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.video-stage::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(0deg, rgba(3, 8, 6, 0.83), transparent 60%),
        linear-gradient(90deg, rgba(3, 8, 6, 0.42), transparent 52%);
}

.video-stage__content {
    position: absolute;
    right: clamp(26px, 5vw, 72px);
    bottom: clamp(28px, 5vw, 72px);
    left: clamp(26px, 5vw, 72px);
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
}

.video-stage__content h2 {
    max-width: 850px;
    font-size: clamp(2.4rem, 5.8vw, 6.6rem);
}

.video-stage__content p {
    max-width: 520px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
}

.video-toggle {
    display: grid;
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(3, 8, 6, 0.36);
    color: var(--white);
    backdrop-filter: blur(12px);
    transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.video-toggle:hover {
    background: var(--lime);
    color: var(--ink-950);
    transform: scale(1.06);
}

.video-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.video-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* Process timeline ------------------------------------------------------ */

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

.process-step {
    position: relative;
    min-height: 360px;
    padding: 34px clamp(22px, 2.8vw, 40px);
    border-right: 1px solid var(--line-dark);
    transition: background-color var(--transition);
}

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

.process-step:hover {
    background: rgba(8, 113, 85, 0.055);
}

.process-step__number {
    display: flex;
    margin-bottom: 88px;
    align-items: center;
    justify-content: space-between;
    color: var(--forest-bright);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.process-step__number::after {
    width: 10px;
    height: 10px;
    border: 2px solid var(--forest-bright);
    border-radius: 50%;
    content: "";
    transition: background-color var(--transition), transform var(--transition);
}

.process-step:hover .process-step__number::after {
    background: var(--forest-bright);
    transform: scale(1.25);
}

.process-step h3 {
    margin-bottom: 18px;
    color: var(--ink-900);
    font-size: clamp(1.4rem, 2.25vw, 2.35rem);
}

.process-step p {
    color: #607068;
    font-size: 0.88rem;
}

.process-step__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    overflow: hidden;
    background: rgba(8, 113, 85, 0.1);
}

.process-step__line::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--forest-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 700ms var(--ease);
}

.process-step:hover .process-step__line::after {
    transform: scaleX(1);
}

/* Trust cards ----------------------------------------------------------- */

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

.trust-card {
    position: relative;
    min-height: 320px;
    padding: clamp(28px, 3.5vw, 50px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
    transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.trust-card:hover {
    border-color: rgba(156, 246, 109, 0.28);
    background: rgba(156, 246, 109, 0.055);
    transform: translateY(-7px);
}

.trust-card__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 64px;
    place-items: center;
    border-radius: 18px;
    background: var(--lime);
    color: var(--ink-950);
    box-shadow: 0 16px 45px rgba(156, 246, 109, 0.16);
}

.trust-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-card h3 {
    margin-bottom: 15px;
}

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

.trust-card__index {
    position: absolute;
    top: 36px;
    right: 36px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

/* Energy calculator ----------------------------------------------------- */

.calculator-shell {
    position: relative;
    display: grid;
    padding: clamp(28px, 5vw, 74px);
    overflow: hidden;
    grid-template-columns: minmax(320px, 0.9fr) minmax(350px, 1.1fr);
    gap: clamp(45px, 8vw, 125px);
    border: 1px solid rgba(156, 246, 109, 0.18);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0%, rgba(156, 246, 109, 0.12), transparent 26rem),
        var(--ink-850);
    box-shadow: var(--shadow-lg);
}

.calculator-shell::before {
    position: absolute;
    top: -220px;
    left: -200px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(156, 246, 109, 0.13);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 65px rgba(156, 246, 109, 0.025), 0 0 0 130px rgba(156, 246, 109, 0.015);
}

.calculator-intro,
.calculator-form {
    position: relative;
    z-index: 1;
}

.calculator-intro .eyebrow {
    margin-bottom: 23px;
}

.calculator-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(2.45rem, 4.7vw, 5.15rem);
}

.calculator-intro > p {
    max-width: 570px;
    color: var(--smoke);
}

.calculator-results {
    display: grid;
    margin-top: 45px;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.calculator-result {
    min-height: 126px;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.calculator-result span {
    display: block;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.calculator-result strong {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.calculator-result strong small {
    margin-left: 5px;
    color: var(--lime);
    font-family: "DM Sans", sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0;
}

.calculator-form {
    display: grid;
    padding: clamp(24px, 3.7vw, 48px);
    gap: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
}

.range-field {
    display: grid;
    gap: 15px;
}

.range-field__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.range-field label {
    font-size: 0.76rem;
    font-weight: 750;
}

.range-field output {
    color: var(--lime);
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

input[type="range"] {
    width: 100%;
    height: 4px;
    border-radius: var(--radius-pill);
    appearance: none;
    background: linear-gradient(90deg, var(--lime) var(--range-progress, 50%), rgba(255, 255, 255, 0.13) var(--range-progress, 50%));
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    width: 21px;
    height: 21px;
    border: 5px solid var(--ink-850);
    border-radius: 50%;
    appearance: none;
    background: var(--lime);
    box-shadow: 0 0 0 1px var(--lime), 0 5px 14px rgba(0, 0, 0, 0.25);
}

input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 5px solid var(--ink-850);
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 1px var(--lime);
}

.switch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.switch-option {
    position: relative;
    display: block;
}

.switch-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-option span {
    display: flex;
    min-height: 64px;
    padding: 12px 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 750;
    text-align: center;
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition), background-color var(--transition);
}

.switch-option input:checked + span {
    border-color: var(--lime);
    background: rgba(156, 246, 109, 0.1);
    color: var(--white);
}

.switch-option input:focus-visible + span {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}

.calculator-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.55;
}

.calculator-note::before {
    display: block;
    width: 6px;
    height: 6px;
    margin-top: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    content: "";
    background: var(--sun);
}

/* Content tabs / premium products -------------------------------------- */

.tabs-shell {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(35px, 6vw, 90px);
    align-items: start;
}

.tab-list {
    position: sticky;
    top: 115px;
    display: grid;
    gap: 4px;
}

.tab-button {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-dark);
    background: transparent;
    color: #607068;
    font-size: 0.75rem;
    font-weight: 750;
    text-align: left;
    transition: color var(--transition), padding-left var(--transition);
}

.tab-button::after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: var(--forest-bright);
    opacity: 0;
    transform: scale(0);
    transition: opacity var(--transition), transform var(--transition);
}

.tab-button:hover,
.tab-button.is-active {
    padding-left: 23px;
    color: var(--ink-900);
}

.tab-button.is-active::after {
    opacity: 1;
    transform: scale(1);
}

.tab-panels {
    min-width: 0;
}

.tab-panel {
    animation: tabIn 580ms var(--ease);
}

.tab-panel[hidden] {
    display: none;
}

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

.product-showcase {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(300px, 0.92fr) minmax(330px, 1.08fr);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.38);
}

.product-showcase__visual {
    position: relative;
    display: grid;
    min-height: 620px;
    padding: 35px;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(8, 113, 85, 0.14), transparent 18rem),
        #dce5dc;
}

.product-showcase__visual::before {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(8, 113, 85, 0.14);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 55px rgba(8, 113, 85, 0.03), 0 0 0 110px rgba(8, 113, 85, 0.02);
    animation: productHalo 5s ease-in-out infinite;
}

@keyframes productHalo {
    0%, 100% { transform: scale(0.92); opacity: 0.6; }
    50% { transform: scale(1.04); opacity: 1; }
}

.product-showcase__visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 40px 40px rgba(0, 0, 0, 0.22));
    transition: transform 1s var(--ease);
}

.product-showcase:hover .product-showcase__visual img {
    transform: translateY(-9px) scale(1.025);
}

.product-showcase__badge {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    display: inline-flex;
    min-height: 34px;
    padding-inline: 14px;
    align-items: center;
    border-radius: var(--radius-pill);
    background: var(--forest);
    color: var(--lime-bright);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-showcase__content {
    padding: clamp(34px, 5vw, 70px);
}

.product-showcase__content .eyebrow {
    margin-bottom: 20px;
}

.product-showcase__content h3 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 4.3rem);
}

.product-showcase__lead {
    color: #53625a;
    font-size: 1rem;
}

.spec-list {
    display: grid;
    margin-block: 36px;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
}

.spec-list > div {
    min-height: 92px;
    padding: 17px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.spec-list dt {
    margin-bottom: 8px;
    color: #68776f;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spec-list dd {
    color: var(--ink-900);
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-showcase__features {
    display: grid;
    gap: 9px;
}

.product-showcase__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4e5e55;
    font-size: 0.78rem;
}

.product-showcase__features li::before {
    width: 6px;
    height: 6px;
    margin-top: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    content: "";
    background: var(--forest-bright);
}

.product-showcase__actions {
    display: flex;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Energy system map ----------------------------------------------------- */

.energy-map {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    border: 1px solid rgba(156, 246, 109, 0.18);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 50%, rgba(8, 113, 85, 0.26), transparent 25rem),
        var(--ink-950);
}

.energy-map::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.46;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle, #000, transparent 75%);
}

.energy-map__center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 190px;
    height: 190px;
    place-items: center;
    border: 1px solid rgba(156, 246, 109, 0.45);
    border-radius: 50%;
    background: rgba(6, 79, 59, 0.52);
    box-shadow: 0 0 0 34px rgba(156, 246, 109, 0.035), 0 0 80px rgba(156, 246, 109, 0.12);
    text-align: center;
    backdrop-filter: blur(14px);
    transform: translate(-50%, -50%);
}

.energy-map__center strong {
    font-family: "Sora", sans-serif;
    font-size: 1.55rem;
    line-height: 1.05;
}

.energy-map__center span {
    display: block;
    margin-top: 8px;
    color: var(--lime);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.energy-map__node {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 154px;
    min-height: 130px;
    padding: 20px;
    place-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.energy-map__node:hover,
.energy-map__node.is-active {
    border-color: var(--lime);
    background: rgba(156, 246, 109, 0.1);
    transform: translateY(-5px);
}

.energy-map__node svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.energy-map__node strong {
    font-size: 0.74rem;
}

.energy-map__node small {
    color: var(--muted);
    font-size: 0.57rem;
}

.energy-map__node--pv { top: 10%; left: 11%; }
.energy-map__node--grid { top: 10%; right: 11%; }
.energy-map__node--storage { top: 50%; left: 7%; transform: translateY(-50%); }
.energy-map__node--home { top: 50%; right: 7%; transform: translateY(-50%); }
.energy-map__node--heat { bottom: 9%; left: 16%; }
.energy-map__node--car { right: 16%; bottom: 9%; }
.energy-map__node--storage:hover,
.energy-map__node--storage.is-active,
.energy-map__node--home:hover,
.energy-map__node--home.is-active { transform: translateY(calc(-50% - 5px)); }

.energy-map__lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.energy-map__lines path {
    fill: none;
    stroke: rgba(156, 246, 109, 0.38);
    stroke-width: 1.25;
    stroke-dasharray: 6 9;
    animation: energyDash 2.2s linear infinite;
}

.energy-map__lines circle {
    fill: var(--lime);
    filter: drop-shadow(0 0 8px var(--lime));
}

@keyframes energyDash {
    to { stroke-dashoffset: -30; }
}

.energy-map__legend {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 4;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transform: translateX(-50%);
}

/* Feature mosaic -------------------------------------------------------- */

.feature-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.feature-panel {
    position: relative;
    min-height: 360px;
    padding: clamp(28px, 4vw, 52px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
}

.feature-panel--7 { grid-column: span 7; }
.feature-panel--5 { grid-column: span 5; }
.feature-panel--4 { grid-column: span 4; }
.feature-panel--8 { grid-column: span 8; }

.feature-panel--lime {
    border-color: transparent;
    background: var(--lime);
    color: var(--ink-950);
}

.feature-panel--forest {
    background: var(--forest);
}

.feature-panel--image {
    min-height: 520px;
    padding: 0;
}

.feature-panel--image img,
.feature-panel--image video {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.feature-panel--image:hover img,
.feature-panel--image:hover video {
    transform: scale(1.05);
}

.feature-panel--image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(3, 8, 6, 0.75), transparent 55%);
}

.feature-panel__tag {
    display: inline-flex;
    min-height: 32px;
    padding-inline: 13px;
    align-items: center;
    border: 1px solid currentColor;
    border-radius: var(--radius-pill);
    color: currentColor;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-panel h3 {
    max-width: 620px;
    margin-top: 85px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4.2vw, 4.5rem);
}

.feature-panel > p {
    max-width: 590px;
    color: var(--muted);
}

.feature-panel--lime > p {
    color: rgba(3, 8, 6, 0.68);
}

.feature-panel__bottom {
    position: absolute;
    right: clamp(28px, 4vw, 52px);
    bottom: clamp(28px, 4vw, 52px);
    left: clamp(28px, 4vw, 52px);
    z-index: 2;
}

.feature-panel__bottom h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.feature-panel__bottom p {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.66);
}

.feature-panel__giant-number {
    position: absolute;
    right: -0.03em;
    bottom: -0.17em;
    color: rgba(3, 8, 6, 0.08);
    font-family: "Sora", sans-serif;
    font-size: clamp(10rem, 25vw, 24rem);
    font-weight: 800;
    letter-spacing: -0.1em;
    line-height: 1;
}

/* Quote / manifesto ----------------------------------------------------- */

.manifesto {
    position: relative;
    display: grid;
    min-height: 660px;
    padding: clamp(45px, 8vw, 112px);
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(120deg, rgba(3, 8, 6, 0.86), rgba(3, 8, 6, 0.42)),
        url("../assets/images/hero-residential-solar-v2.webp") center / cover;
    text-align: center;
}

.manifesto::before {
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--radius-xl) - 18px);
    content: "";
}

.manifesto__content {
    position: relative;
    z-index: 1;
    max-width: 1030px;
}

.manifesto__mark {
    margin-bottom: 22px;
    color: var(--lime);
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 0.5;
}

.manifesto blockquote {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4.9vw, 5.5rem);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1.08;
    text-wrap: balance;
}

.manifesto p {
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Heat-pump premium composition ---------------------------------------- */

.heatpump-stage {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #dfe5dd;
    box-shadow: var(--shadow-lg);
}

.heatpump-stage__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heatpump-stage::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(3, 8, 6, 0.76), rgba(3, 8, 6, 0.12) 58%, rgba(3, 8, 6, 0.05)),
        linear-gradient(0deg, rgba(3, 8, 6, 0.35), transparent 50%);
}

.heatpump-stage__product {
    position: absolute;
    right: clamp(3%, 8vw, 10%);
    bottom: -1.5%;
    z-index: 2;
    width: min(52%, 690px);
    height: 78%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 45px 42px rgba(0, 0, 0, 0.35));
    transition: transform 1s var(--ease);
}

.heatpump-stage:hover .heatpump-stage__product {
    transform: translateY(-8px) scale(1.02);
}

.heatpump-stage__content {
    position: absolute;
    top: clamp(38px, 7vw, 94px);
    bottom: clamp(38px, 7vw, 94px);
    left: clamp(30px, 7vw, 96px);
    z-index: 3;
    display: flex;
    max-width: 510px;
    flex-direction: column;
    justify-content: space-between;
}

.heatpump-stage__content h2 {
    margin-top: 24px;
    font-size: clamp(2.7rem, 5.7vw, 6.4rem);
}

.heatpump-stage__content p {
    max-width: 455px;
    color: rgba(255, 255, 255, 0.68);
}

.heatpump-stage__facts {
    display: grid;
    max-width: 430px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.heatpump-stage__facts div {
    padding: 16px 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.heatpump-stage__facts strong {
    display: block;
    color: var(--lime);
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
}

.heatpump-stage__facts span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.heatpump-stage__badge {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 4;
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-950);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
}

/* Technical cards and tables ------------------------------------------- */

.tech-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.tech-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.tech-card:hover {
    border-color: rgba(156, 246, 109, 0.27);
    background: rgba(156, 246, 109, 0.055);
    transform: translateY(-6px);
}

.tech-card__index {
    display: flex;
    margin-bottom: 68px;
    align-items: center;
    justify-content: space-between;
    color: var(--lime);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.tech-card__index::after {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}

.tech-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

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

.technical-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.4);
}

.technical-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: var(--ink-900);
}

.technical-table th,
.technical-table td {
    padding: 18px 20px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.76rem;
    text-align: left;
}

.technical-table th:last-child,
.technical-table td:last-child {
    border-right: 0;
}

.technical-table tr:last-child td {
    border-bottom: 0;
}

.technical-table thead th {
    background: var(--forest);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.technical-table tbody tr {
    transition: background-color var(--transition-fast);
}

.technical-table tbody tr:hover {
    background: rgba(8, 113, 85, 0.075);
}

.technical-table td strong {
    color: var(--forest-bright);
}

.technical-note {
    margin-top: 16px;
    color: #66756d;
    font-size: 0.68rem;
}

/* Heat-pump finder ------------------------------------------------------ */

.finder-shell {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(330px, 1fr) minmax(300px, 0.72fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--ink-850);
    box-shadow: var(--shadow-lg);
}

.finder-controls {
    padding: clamp(36px, 6vw, 84px);
}

.finder-controls .eyebrow {
    margin-bottom: 22px;
}

.finder-controls h2 {
    max-width: 710px;
    margin-bottom: 26px;
    font-size: clamp(2.4rem, 4.7vw, 5.1rem);
}

.finder-controls > p {
    max-width: 630px;
    color: var(--muted);
}

.finder-form {
    display: grid;
    margin-top: 48px;
    gap: 35px;
}

.radio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.radio-card {
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card span {
    display: grid;
    min-height: 88px;
    padding: 15px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
    text-align: center;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}

.radio-card input:checked + span {
    border-color: var(--lime);
    background: rgba(156, 246, 109, 0.1);
    color: var(--white);
}

.radio-card input:focus-visible + span {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
}

.finder-result {
    position: relative;
    display: flex;
    min-height: 650px;
    padding: clamp(34px, 5vw, 68px);
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 50% 38%, rgba(156, 246, 109, 0.18), transparent 18rem),
        var(--forest);
}

.finder-result::before {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(156, 246, 109, 0.24);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 55px rgba(156, 246, 109, 0.035), 0 0 0 110px rgba(156, 246, 109, 0.02);
    transform: translate(-50%, -50%);
}

.finder-result__top,
.finder-result__bottom,
.finder-result img {
    position: relative;
    z-index: 1;
}

.finder-result__top span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.finder-result__top strong {
    display: block;
    margin-top: 10px;
    color: var(--lime);
    font-family: "Sora", sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.finder-result img {
    width: min(100%, 480px);
    max-height: 320px;
    margin-inline: auto;
    object-fit: contain;
    filter: drop-shadow(0 32px 32px rgba(0,0,0,.35));
}

.finder-result__bottom {
    display: grid;
    gap: 12px;
}

.finder-result__bottom div {
    display: flex;
    padding-block: 11px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.7rem;
}

.finder-result__bottom strong {
    color: var(--white);
}

/* Indoor unit gallery --------------------------------------------------- */

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

.unit-card {
    position: relative;
    display: flex;
    min-height: 0;
    padding: 30px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.46);
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.unit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.unit-card__visual {
    display: grid;
    height: clamp(250px, 22vw, 300px);
    padding: 18px;
    margin-bottom: 24px;
    overflow: hidden;
    overflow: clip;
    place-items: center;
    border-radius: var(--radius-md);
    background: radial-gradient(circle, rgba(8,113,85,.12), transparent 65%);
    isolation: isolate;
}

.unit-card__visual img {
    width: auto;
    height: auto;
    max-width: 68%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 14px 16px rgba(0,0,0,.16));
    transition: transform var(--transition-slow);
}

.unit-card:nth-child(3) .unit-card__visual img {
    max-width: 48%;
    max-height: 270px;
}

.unit-card:hover .unit-card__visual img {
    transform: translateY(-7px) scale(1.025);
}

.unit-card__number {
    position: relative;
    z-index: 2;
    color: var(--forest-bright);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.unit-card h3 {
    position: relative;
    z-index: 2;
    margin-block: 12px 11px;
    color: var(--ink-900);
    font-size: 1.45rem;
}

.unit-card p {
    position: relative;
    z-index: 2;
    color: #627168;
    font-size: 0.78rem;
}

/* Downloads / compliance ------------------------------------------------ */

.download-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.download-item {
    display: grid;
    min-height: 112px;
    padding-block: 22px;
    grid-template-columns: 60px 1fr auto;
    gap: 24px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    transition: padding-left var(--transition), background-color var(--transition);
}

.download-item:hover {
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.download-item__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    background: rgba(156, 246, 109, 0.1);
    color: var(--lime);
    font-size: 0.62rem;
    font-weight: 800;
}

.download-item strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
}

.download-item p {
    color: var(--muted);
    font-size: 0.7rem;
}

.download-item__arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.download-item__arrow svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.download-item:hover .download-item__arrow {
    background: var(--lime);
    color: var(--ink-950);
    transform: rotate(45deg);
}

/* Company page ---------------------------------------------------------- */

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

.value-card {
    min-height: 340px;
    padding: clamp(30px, 5vw, 70px);
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    transition: background-color var(--transition);
}

.value-card:hover {
    background: rgba(8, 113, 85, 0.06);
}

.value-card__top {
    display: flex;
    margin-bottom: 90px;
    align-items: center;
    justify-content: space-between;
}

.value-card__top span {
    color: var(--forest-bright);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.value-card__top i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--forest-bright);
}

.value-card h3 {
    margin-bottom: 18px;
    color: var(--ink-900);
    font-size: clamp(1.65rem, 3.2vw, 3.3rem);
}

.value-card p {
    max-width: 540px;
    color: #5f6e66;
}

.story-timeline {
    display: grid;
    margin-top: 60px;
    grid-template-columns: 230px 1fr;
    gap: clamp(35px, 8vw, 120px);
}

.story-timeline__rail {
    position: sticky;
    top: 125px;
    align-self: start;
}

.story-timeline__rail strong {
    display: block;
    color: var(--lime);
    font-family: "Sora", sans-serif;
    font-size: 5rem;
    letter-spacing: -0.08em;
    line-height: 1;
}

.story-timeline__rail span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-timeline__items {
    display: grid;
}

.story-entry {
    display: grid;
    min-height: 260px;
    padding-block: 42px;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    border-top: 1px solid var(--line);
}

.story-entry:last-child {
    border-bottom: 1px solid var(--line);
}

.story-entry__number {
    color: var(--lime);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.story-entry h3 {
    margin-bottom: 18px;
    font-size: clamp(1.6rem, 3vw, 3.1rem);
}

.story-entry p {
    max-width: 670px;
    color: var(--muted);
}

/* Contact --------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(450px, 1.3fr);
    gap: clamp(45px, 8vw, 120px);
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: 115px;
}

.contact-aside .eyebrow {
    margin-bottom: 24px;
}

.contact-aside h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4.6vw, 5rem);
}

.contact-aside > p {
    color: var(--muted);
}

.contact-options {
    display: grid;
    margin-top: 43px;
    border-top: 1px solid var(--line);
}

.contact-option {
    display: grid;
    min-height: 92px;
    padding-block: 18px;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.contact-option__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: rgba(156, 246, 109, 0.1);
    color: var(--lime);
}

.contact-option__icon svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-option span {
    display: block;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-option strong {
    display: block;
    margin-top: 3px;
    font-size: 0.82rem;
}

.contact-option a {
    color: inherit;
}

.contact-form {
    display: grid;
    padding: clamp(28px, 5vw, 72px);
    gap: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0%, rgba(156,246,109,.08), transparent 20rem),
        rgba(255, 255, 255, 0.035);
}

.contact-form__intro {
    margin-bottom: 15px;
}

.contact-form__intro h3 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3.8vw, 3.8rem);
}

.contact-form__intro p {
    color: var(--muted);
}

.portal-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.portal-card::after {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    aspect-ratio: 1;
    border: 1px solid rgba(156, 246, 109, 0.14);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 38px rgba(156, 246, 109, 0.025),
        0 0 0 78px rgba(156, 246, 109, 0.018);
    pointer-events: none;
}

.portal-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.portal-card__status {
    display: inline-flex;
    min-height: 34px;
    padding-inline: 13px;
    gap: 9px;
    align-items: center;
    border: 1px solid rgba(156, 246, 109, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(156, 246, 109, 0.055);
    color: var(--lime);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.portal-card__status i {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 14px var(--lime);
    animation: livePulse 2s ease-in-out infinite;
}

.portal-card__index {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.portal-steps {
    position: relative;
    z-index: 1;
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.portal-steps li {
    display: grid;
    min-height: 92px;
    padding-block: 18px;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.portal-steps li > span {
    display: grid;
    width: 40px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(156, 246, 109, 0.2);
    border-radius: 50%;
    color: var(--lime);
    font-size: 0.58rem;
    font-weight: 800;
}

.portal-steps strong,
.portal-steps small {
    display: block;
}

.portal-steps strong {
    margin-bottom: 4px;
    font-size: 0.88rem;
}

.portal-steps small {
    color: var(--muted);
    font-size: 0.68rem;
}

.button--portal {
    position: relative;
    z-index: 1;
    width: 100%;
}

.portal-card__privacy {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 0.63rem;
    line-height: 1.65;
}

.portal-card__privacy a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.form-field {
    position: relative;
    display: grid;
    gap: 9px;
}

.form-field label {
    color: var(--smoke);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: 0;
    background: rgba(3, 8, 6, 0.3);
    color: var(--white);
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input,
.form-field select {
    height: 58px;
    padding-inline: 18px;
}

.form-field textarea {
    min-height: 155px;
    padding: 17px 18px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--lime);
    background: rgba(156, 246, 109, 0.035);
    box-shadow: 0 0 0 4px rgba(156, 246, 109, 0.08);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
    border-color: #ff8a74;
    background: rgba(255, 138, 116, 0.055);
    box-shadow: 0 0 0 4px rgba(255, 138, 116, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.form-field select option {
    background: var(--ink-850);
    color: var(--white);
}

.form-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--muted);
    font-size: 0.67rem;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--lime);
}

.form-consent input.is-invalid {
    outline: 2px solid #ff8a74;
    outline-offset: 3px;
}

.form-consent a {
    color: var(--lime);
    text-decoration: underline;
}

/* Accordion ------------------------------------------------------------- */

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(430px, 1fr);
    gap: clamp(42px, 8vw, 120px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro .eyebrow {
    margin-bottom: 22px;
}

.faq-intro h2 {
    margin-bottom: 24px;
    font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.faq-intro p {
    color: #5c6b63;
}

.accordion {
    border-top: 1px solid var(--line-dark);
}

.accordion-item {
    border-bottom: 1px solid var(--line-dark);
}

.accordion-item__button {
    display: grid;
    width: 100%;
    min-height: 94px;
    padding-block: 20px;
    grid-template-columns: 44px 1fr 38px;
    gap: 18px;
    align-items: center;
    background: transparent;
    color: var(--ink-900);
    text-align: left;
}

.accordion-item__button > span:first-child {
    color: var(--forest-bright);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.accordion-item__button strong {
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.accordion-item__plus {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    transition: background-color var(--transition), transform var(--transition);
}

.accordion-item__plus::before,
.accordion-item__plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.accordion-item__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-item__plus {
    background: var(--forest);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-item.is-open .accordion-item__plus::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 650ms var(--ease);
}

.accordion-item__content p {
    max-width: 760px;
    padding: 0 38px 30px 62px;
    color: #5c6b63;
}

/* Legal pages ----------------------------------------------------------- */

.legal-content {
    display: grid;
    grid-template-columns: 250px minmax(0, 780px);
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.legal-content__nav {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 7px;
}

.legal-content__nav span {
    color: var(--forest-bright);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-content__body {
    display: grid;
    gap: 40px;
}

.legal-content__body section {
    display: grid;
    gap: 14px;
}

.legal-content__body h2 {
    font-size: clamp(1.55rem, 3vw, 2.8rem);
}

.legal-content__body h3 {
    font-size: 1.1rem;
}

.legal-content__body p,
.legal-content__body li {
    color: #53625a;
}

.legal-content__body ul {
    display: grid;
    padding-left: 20px;
    gap: 8px;
    list-style: disc;
}

.placeholder-warning {
    padding: 22px 24px;
    border: 1px solid rgba(200, 118, 0, 0.28);
    border-radius: var(--radius-md);
    background: rgba(244, 184, 74, 0.12);
    color: #5d430e;
}

.placeholder-warning strong {
    display: block;
    margin-bottom: 5px;
}

/* Horizontal editorial cards ------------------------------------------ */

.stories-shell {
    position: relative;
}

.stories-track {
    display: flex;
    padding-bottom: 20px;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.stories-track::-webkit-scrollbar {
    display: none;
}

.story-card {
    position: relative;
    min-width: min(450px, 78vw);
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    scroll-snap-align: start;
    background: var(--ink-800);
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.story-card:hover img {
    transform: scale(1.055);
}

.story-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(3, 8, 6, 0.92), transparent 65%);
}

.story-card__content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.story-card__content span {
    color: var(--lime);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-card__content h3 {
    margin-top: 12px;
    font-size: clamp(1.45rem, 3vw, 2.5rem);
}

.stories-controls {
    display: flex;
    margin-top: 22px;
    align-items: center;
    gap: 12px;
}

.stories-control {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    transition: color var(--transition), background-color var(--transition);
}

.stories-control:hover {
    background: var(--lime);
    color: var(--ink-950);
}

.stories-control svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.stories-control--prev svg {
    transform: rotate(180deg);
}

.stories-progress {
    position: relative;
    width: min(300px, 40vw);
    height: 1px;
    margin-left: 15px;
    overflow: hidden;
    background: var(--line);
}

.stories-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
}

/* Footer --------------------------------------------------------------- */

.footer-cta {
    position: relative;
    display: grid;
    min-height: 720px;
    padding-block: clamp(90px, 12vw, 170px);
    place-items: center;
    overflow: hidden;
    background: var(--forest);
    text-align: center;
}

.footer-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
}

.footer-cta__orb {
    position: absolute;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.16;
}

.footer-cta__orb--one {
    top: -15rem;
    left: -10rem;
    background: var(--lime);
}

.footer-cta__orb--two {
    right: -10rem;
    bottom: -16rem;
    background: var(--sun);
}

.footer-cta__inner {
    position: relative;
    z-index: 1;
}

.footer-cta .eyebrow {
    margin-bottom: 24px;
}

.footer-cta h2 {
    font-size: clamp(3rem, 7.8vw, 9rem);
    line-height: 0.9;
    text-wrap: balance;
}

.footer-cta p {
    max-width: 680px;
    margin: 34px auto 40px;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.footer-cta .button-row {
    justify-content: center;
}

.site-footer {
    position: relative;
    background: var(--ink-950);
}

.site-footer__top {
    display: grid;
    padding-block: clamp(70px, 9vw, 118px);
    grid-template-columns: 1.6fr repeat(3, 0.75fr);
    gap: clamp(38px, 5vw, 84px);
}

.site-logo--footer {
    margin-bottom: 28px;
}

.site-footer__brand > p {
    max-width: 350px;
    color: var(--muted);
    font-size: 0.83rem;
}

.site-footer__domain {
    display: inline-flex;
    min-height: 32px;
    padding-inline: 13px;
    margin-top: 24px;
    align-items: center;
    border: 1px solid rgba(156, 246, 109, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(156, 246, 109, 0.05);
    color: var(--lime);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__column h3 {
    margin-bottom: 17px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column p,
.site-footer__column > span {
    color: var(--muted);
    font-size: 0.76rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.site-footer__column a:hover {
    color: var(--lime);
    transform: translateX(4px);
}

.site-footer__contact p + p {
    margin-top: 11px;
}

.site-footer__contact > span {
    margin-top: 11px;
    color: var(--lime);
}

.site-footer__bottom {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-top: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.64rem;
}

.site-footer__bottom > div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-footer__bottom a,
.site-footer__bottom button {
    background: transparent;
    color: inherit;
    transition: color var(--transition-fast);
}

.site-footer__bottom a:hover,
.site-footer__bottom button:hover {
    color: var(--lime);
}

/* Toast ---------------------------------------------------------------- */

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    display: grid;
    width: min(440px, calc(100% - 48px));
    min-height: 84px;
    padding: 16px 16px 16px 18px;
    grid-template-columns: 42px 1fr 32px;
    gap: 13px;
    align-items: center;
    visibility: hidden;
    border: 1px solid rgba(156, 246, 109, 0.26);
    border-radius: var(--radius-md);
    background: rgba(5, 16, 12, 0.94);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    backdrop-filter: blur(22px);
    transform: translateY(22px) scale(0.98);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.toast.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-950);
}

.toast__icon svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.toast p {
    color: var(--smoke);
    font-size: 0.73rem;
}

.toast button {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    color: var(--muted);
}

.toast button:hover {
    background: rgba(255,255,255,.08);
    color: var(--white);
}

.toast button svg {
    width: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1240px) {
    :root {
        --container: min(1120px, calc(100% - 48px));
        --container-wide: calc(100% - 36px);
    }

    .desktop-nav,
    .header-text-link {
        display: none;
    }

    .site-header__shell {
        grid-template-columns: 1fr auto;
    }

    .site-header__actions {
        grid-column: 2;
    }

    .menu-toggle,
    .menu-close {
        display: grid;
    }

    .hero-home__status {
        right: 24px;
    }

    .solution-card--large,
    .solution-card--medium {
        grid-column: span 6;
    }

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

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

    .section-heading,
    .page-hero__shell,
    .split-story,
    .split-story--reverse,
    .calculator-shell,
    .contact-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .section-heading__copy {
        max-width: 700px;
    }

    .page-hero__aside {
        max-width: 700px;
    }

    .hero-home__status {
        display: none;
    }

    .hero-home__content {
        max-width: 850px;
    }

    .hero-home__bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .metric:nth-child(-n+2),
    .process-step:nth-child(-n+2) {
        border-bottom: 1px solid var(--line-dark);
    }

    .split-story--reverse .split-story__visual {
        order: -1;
    }

    .split-story__visual {
        min-height: min(720px, 85vw);
    }

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

    .trust-card {
        min-height: 260px;
    }

    .trust-card__icon {
        margin-bottom: 45px;
    }

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

    .tab-list {
        position: static;
        display: flex;
        overflow-x: auto;
        border-bottom: 1px solid var(--line-dark);
        scrollbar-width: none;
    }

    .tab-list::-webkit-scrollbar {
        display: none;
    }

    .tab-button {
        min-width: max-content;
        border-bottom: 0;
    }

    .energy-map__node {
        width: 132px;
    }

    .feature-panel--7,
    .feature-panel--5,
    .feature-panel--4,
    .feature-panel--8 {
        grid-column: span 6;
    }

    .heatpump-stage__product {
        right: -4%;
        width: 58%;
    }

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

    .finder-result {
        min-height: 580px;
    }

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

    .unit-card:last-child {
        grid-column: 1 / -1;
    }

    .contact-aside,
    .faq-intro {
        position: static;
    }

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

    .site-footer__contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 760px) {
    :root {
        --container: calc(100% - 32px);
        --container-wide: calc(100% - 24px);
        --radius-lg: 26px;
        --radius-xl: 32px;
    }

    body {
        font-size: 15px;
    }

    .section {
        padding-block: 82px;
    }

    .site-header__shell {
        width: calc(100% - 28px);
    }

    .site-header__actions .button {
        display: none;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .site-logo__type strong {
        font-size: 0.88rem;
    }

    .site-logo__type small {
        font-size: 0.47rem;
    }

    .hero-home {
        min-height: 780px;
    }

    .hero-home__media::after {
        background:
            linear-gradient(90deg, rgba(3,8,6,.9), rgba(3,8,6,.42)),
            linear-gradient(0deg, var(--ink-950), transparent 48%);
    }

    .hero-home__shell {
        width: var(--container);
        padding-bottom: 118px;
    }

    .hero-home h1 {
        font-size: clamp(3.55rem, 17vw, 6.2rem);
    }

    .hero-home__bottom {
        margin-top: 34px;
    }

    .hero-home__kicker {
        align-items: flex-start;
        font-size: 0.58rem;
        line-height: 1.5;
    }

    .hero-scroll {
        display: none;
    }

    .hero-marquee {
        height: 50px;
    }

    .page-hero {
        min-height: 740px;
    }

    .page-hero--compact {
        min-height: 590px;
    }

    .page-hero__shell {
        width: var(--container);
        padding-bottom: 74px;
        gap: 35px;
    }

    .page-hero__content h1 {
        font-size: clamp(3.25rem, 15vw, 6rem);
    }

    .page-hero__aside {
        padding-left: 18px;
    }

    .intro-statement,
    .story-timeline,
    .legal-content {
        grid-template-columns: 1fr;
    }

    .intro-statement__index,
    .story-timeline__rail,
    .legal-content__nav {
        position: static;
    }

    .intro-statement__index::after {
        width: 80px;
        height: 1px;
    }

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

    .solution-card--large,
    .solution-card--medium,
    .solution-card--wide,
    .solution-card--small {
        grid-column: 1;
        min-height: 430px;
    }

    .solution-card__bottom {
        align-items: end;
    }

    .solution-card__copy p {
        display: none;
    }

    .solution-card__product {
        top: 0;
        right: -14%;
        width: 72%;
        height: 66%;
    }

    .solution-card--heatpump .solution-card__product {
        top: 10px;
        right: auto;
        left: 50%;
        width: min(68%, 260px);
        height: 60%;
        object-position: center top;
        transform: translateX(-50%);
    }

    .solution-card--heatpump:hover .solution-card__product {
        transform: translateX(-50%) translateY(-8px) scale(1.02);
    }

    .metric-strip,
    .process-grid,
    .tech-card-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .metric,
    .process-step,
    .value-card {
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .metric:last-child,
    .process-step:last-child {
        border-bottom: 0;
    }

    .metric,
    .process-step {
        min-height: 240px;
    }

    .process-step__number {
        margin-bottom: 52px;
    }

    .split-story__visual {
        min-height: 560px;
    }

    .video-stage {
        min-height: 650px;
    }

    .video-stage__content {
        display: grid;
    }

    .video-toggle {
        width: 62px;
        height: 62px;
    }

    .calculator-shell {
        padding: 22px;
    }

    .calculator-results,
    .spec-list {
        grid-template-columns: 1fr;
    }

    .switch-grid,
    .radio-cards {
        grid-template-columns: 1fr;
    }

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

    .product-showcase__visual {
        min-height: 460px;
    }

    .energy-map {
        display: grid;
        min-height: auto;
        padding: 24px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .energy-map__center,
    .energy-map__node {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 130px;
        transform: none;
    }

    .energy-map__center {
        grid-column: 1 / -1;
        height: auto;
        border-radius: var(--radius-md);
        transform: none;
    }

    .energy-map__node--storage:hover,
    .energy-map__node--storage.is-active,
    .energy-map__node--home:hover,
    .energy-map__node--home.is-active,
    .energy-map__node:hover,
    .energy-map__node.is-active {
        transform: translateY(-3px);
    }

    .energy-map__lines,
    .energy-map__legend {
        display: none;
    }

    .feature-panel--7,
    .feature-panel--5,
    .feature-panel--4,
    .feature-panel--8 {
        grid-column: 1 / -1;
    }

    .feature-panel h3 {
        margin-top: 58px;
    }

    .manifesto {
        min-height: 550px;
        padding: 50px 28px;
    }

    .manifesto::before {
        inset: 16px;
    }

    .heatpump-stage {
        min-height: 780px;
    }

    .heatpump-stage::after {
        background: linear-gradient(0deg, rgba(3,8,6,.92), rgba(3,8,6,.22));
    }

    .heatpump-stage__content {
        top: 35px;
        right: 28px;
        bottom: 38px;
        left: 28px;
    }

    .heatpump-stage__product {
        right: -13%;
        bottom: 3%;
        width: 82%;
        height: 52%;
    }

    .heatpump-stage__facts {
        grid-template-columns: repeat(3, 1fr);
    }

    .finder-controls,
    .finder-result {
        padding: 30px 24px;
    }

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

    .unit-card:last-child {
        grid-column: auto;
    }

    .unit-card {
        padding: 24px;
    }

    .unit-card__visual {
        height: 250px;
        margin-bottom: 20px;
    }

    .unit-card__visual img {
        max-width: 64%;
        max-height: 215px;
    }

    .unit-card:nth-child(3) .unit-card__visual img {
        max-width: 48%;
        max-height: 230px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .accordion-item__button {
        grid-template-columns: 34px 1fr 34px;
        gap: 10px;
    }

    .accordion-item__content p {
        padding-left: 44px;
    }

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        padding-block: 23px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .site-logo__type {
        min-width: 114px;
        gap: 4px;
    }

    .site-logo__type strong {
        font-size: 0.83rem;
    }

    .site-logo__type small {
        display: block;
        font-size: 0.4rem;
        letter-spacing: 0.18em;
    }

    .solution-card--heatpump .solution-card__product {
        right: auto;
        left: 50%;
        width: 66%;
        height: 58%;
    }

    .hero-home__shell {
        padding-top: 150px;
    }

    .hero-home h1 {
        font-size: clamp(3.25rem, 18vw, 5.35rem);
    }

    .hero-home h1 .hero-word:nth-child(2) > span {
        font-size: 0.77em;
        white-space: nowrap;
    }

    .hero-home__bottom .button-row,
    .footer-cta .button-row {
        display: grid;
        width: 100%;
    }

    .hero-home__bottom .button,
    .footer-cta .button {
        width: 100%;
    }

    .page-hero__facts {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 24px;
    }

    .solution-card__bottom {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }

    .solution-card__arrow {
        width: 46px;
        height: 46px;
    }

    .calculator-results {
        border-left: 0;
    }

    .calculator-result {
        border-left: 1px solid var(--line);
    }

    .feature-mosaic {
        grid-template-columns: 1fr;
    }

    .feature-panel--7,
    .feature-panel--5,
    .feature-panel--4,
    .feature-panel--8 {
        grid-column: 1;
    }

    .heatpump-stage__facts {
        grid-template-columns: 1fr;
        max-width: 160px;
    }

    .heatpump-stage__facts div {
        padding: 8px;
    }

    .heatpump-stage__badge {
        top: auto;
        right: 22px;
        bottom: 22px;
        width: 78px;
        height: 78px;
    }

    .heatpump-stage__product {
        bottom: 8%;
        width: 92%;
        height: 49%;
    }

    .download-item {
        grid-template-columns: 48px 1fr;
    }

    .download-item__icon {
        width: 46px;
        height: 46px;
    }

    .download-item__arrow {
        display: none;
    }

    .story-entry {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-width: 86vw;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }

    .site-footer__bottom > div {
        flex-wrap: wrap;
    }
}

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

    .hero-home__media video,
    video[autoplay] {
        display: none;
    }

    .js .reveal,
    .js .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .mobile-menu,
    .menu-backdrop,
    .loader,
    .pointer-glow,
    .scroll-progress,
    .footer-cta,
    .site-footer,
    .video-toggle,
    .button-row,
    .toast {
        display: none !important;
    }

    body,
    .section,
    .section--cream,
    .section--dark,
    .section--deep {
        background: #fff !important;
        color: #000 !important;
    }

    main {
        padding: 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
