*,::after,::before{
	box-sizing:border-box
}
:root{
	--color: #ff9429;
    --contrast: #161616;
	--color-on-back: #ff9429;
	--hover: #ff9429;

	--orange: #ff9429;
	--red: #f44336;
	--yellow: #fad000;
	--green: #67cd67;
	--blue: #3b82f6;

	--white: #ffffff;
	--gray: #cccccc;

	--text: #f6f6f6;/* #000;*/
	--textdark: #333333;

	--back: #0c0c0c; /*#fefefe;*/
	--vcard: #757575;
	--input: #373737;
	--checkboxbg:#373737;

	--button: #373737;
	--boxbg: #1a1a1a;
	--table: #2e2e2e;
	--slabdark:  #1b1b1b;
	--slabdark:  #000000;

	--font: 'Verdana', sans-serif!important;
	--spacing:  1px;
	--giga: 2.2rem;
	--huge: 2rem;
	--large: 1.5rem;
	--medium: 1.2rem;
	--normal: 1rem;
	--small: .8rem;

	--radius: 5px;
	--padding: 1.5rem;
}
input, textarea, select {
  color-scheme: dark;
}
.back-dark{
	background-color: #0c0c0cab;
}
.container > .back-dark{
	margin: 0 calc(var(--padding)* -1);
	padding: 0 var(--padding);
}
.back-light{
	background-color: #2727277d;
}
/*
@media (prefers-color-scheme: light) {
  :root{
  	--text: #000;
  	--back: #fefefe;
	--color-on-back: #b75c00;
  }
}
*/
html {
	font-size: calc(0.8126951092611863rem + 0.20811654526534862vw);
}
body{
	font-family:var(--font);
	font-size:var(--normal);
	letter-spacing:var(--spacing);
	min-height:100vh;
	-webkit-font-smoothing:antialiased;
	margin:0;
	background:var(--back);
	color: var(--text);
	display: block;
	overflow-y:scroll;
	-webkit-text-size-adjust: 100%;
	font-weight: 400;
	font-size:1rem;
	line-height: 1.5;
	overflow-x: clip;
}
h2, h1{
	line-height: 1.2;
}
.footer {
    padding: 1rem 0;
    background-color: var(--back);
    box-shadow: 0px -20px 41px 0 rgb(255 148 41 / 12%);
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer li {
    padding-bottom: 0.75rem;
}
.footer li.bold {
    text-transform: uppercase;
    padding-bottom: 2rem;
}
a {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: inherit;
	z-index: 1;
	transition: all .2s cubic-bezier(0,0,0,1);
	cursor: pointer;
}
tr {
    text-align: left;
}
svg{
	fill: var(--text);
}

img {
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}
iframe.card {
    background: white;
    border-radius: 1rem;
}
img.hero{
    border-radius: 1rem;
    aspect-ratio: 6 / 4;
    max-height: 600px;
    width: 100%;
}
.aspect-5-4{
	aspect-ratio: 5/4;
}
.aspect-3-2{
	aspect-ratio: 3/2;
}
.page-wrapper {
	position: relative;
	overflow: clip;
}
.container {
	width: 100%;
	max-width: calc(min(100svw - (2* var(--padding)), 1200px));
	margin-left: auto;
	margin-right: auto;
}
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--back);
    z-index: 99;
    height: 65px;
	box-shadow: 0 9px 41px 0 rgb(127 127 127 / 12%);
}
.nav-wrap {
	z-index: 999;
	width: 100%;
	height: 100%;
	min-height: 4.5rem;
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	flex-direction: row;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	position: relative;
	justify-content: space-between;
}
a.logo {
	color: var(--text);
	font-size: var(--huge);
	text-decoration: none;
	font-weight: 800;
}
.nav-logo {
	display: flex;
	vertical-align: middle;
}
.button-group {
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	flex-flow: wrap;
	align-items: center;
	display: flex;
    height: 80px;
}
.button {
	filter:brightness();
	grid-column-gap: 0.5rem;
	grid-row-gap: 0.5rem;
	background-color: var(--color);
	pointer-events: auto;
	color: var(--contrast);
	text-align: center;
	border-radius: 5px;
	flex-direction: row;
	flex: none;
	justify-content: center;
	align-items: center;
	padding: 0.75rem 1.5rem;
	font-size: var(--norml);
	font-weight: 600;
	line-height: 1.5em;
	display: flex;
	flex: none;
}
.button.secondary {
    background-color: var(--button);
}
.button:hover {
	filter: brightness(93%) contrast(1.6);
}
.button.is-small {
	padding: 0.5rem 1.25rem;
	font-size: var(--small);
}
.language-switcher, .language-switcher-footer {
    position: relative;
    display: inline-block;
}
.language-footer-link, .language-switch-toggle {
    color: var(--text);
    font-size: var(--small);
    font-weight: 700;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    letter-spacing: var(--spacing);
    font-family: var(--font);
}
.language-footer-link:hover, .language-switch-toggle:hover,
.language-switcher.is-open .language-footer-link,
.language-switcher.is-open .language-switch-toggle {
    color: rgba(255, 255, 255, 0.9);
}
.language-menu {
    display: none;
    position: absolute;
    left: 0;
    min-width: 160px;
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0.45rem;
    z-index: 30;
    overflow: hidden;
}
.language-switcher.is-open .language-menu {
    display: block;
}
.language-switcher-header .language-menu {
    top: 110%;
    right: 0;
    left: auto;
}
.language-switcher-footer .language-menu {
    bottom: 110%;
    left: 0;
}
.language-option {
    display: block;
    padding: 0.45rem 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: var(--small);
}
.language-option:hover,
.language-option.is-current {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

#menu-button {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 15px;
	width: 50px;
}
.nav-menu, .nav-overlay .nav-menu {
	float: right;
	position: relative;
	height: 80px;
	flex: 1;
	align-items: center;
	margin-left: 0;
	font-size: .9rem;
	display: flex;
}
.nav-item{
	height: 100%;
	grid-column-gap: 0.5rem;
	justify-content: center;
	align-items: center;
	padding: 1rem 0.5rem;
	line-height: 1;
	display: flex;
	cursor: pointer;
	min-height: 3rem;
	position: relative;
}
.nav-item a, .nav-item .text-small{
	width: 100%;
}
.nav-item-head{
	height: 100%;
	grid-column-gap: 0.5rem;
	justify-content: center;
	align-items: center;
	padding: 1rem 0.5rem;
	line-height: 1;
	display: flex;
	cursor: pointer;
	min-height: 3rem;
}
.nav-item-head:hover > .text-small{
	color: var(--hover);
}
.icon-small {
	width: .7rem;
	height: .7rem;
}
.nav-overlay {
	width: 100%;
	display: none;
	position: fixed;
	top: 65px;
	bottom: -100px;
	padding-bottom: 100px;
	left: 0;
	right: 0;
	overflow-y: auto;
	background-color: rgba(12, 12, 12, 0.5);
	z-index: 100;
}
.nav-overlay .nav-menu {
	height: initial;
	flex-direction: column;
	width: 100%;
	padding: 0 1em 1em 1em;
	box-shadow: 0 15px 3.75rem rgb(131 131 131 / 22%);
	border-radius: 0;
	background-color: var(--back);
}
.nav-overlay .nav-item {
	display: flex;
	width: 100%;
	flex-direction: column;
	height: auto;
}
.nav-overlay .nav-item-head {
    width: 100%;
    justify-content: space-between;
	text-transform: uppercase;
}
.nav-overlay .nav-item-head .text-small {
	color: var(--orange);
}
body.nav-open .nav-cta.mobile .nav-item {
    display: none !important;
}
.nav-dropdown{
	min-width: 20rem;
	background-color: var(--back);
	color: var(--text);
	padding: 1rem;
	top: 80px;
	border-radius: 0 0 1.5rem 1.5rem;
	bottom: auto;
	left: 0%;
	right: auto;
	overflow: hidden;
	position: absolute;
	display: none;
	padding: 1em;
	box-shadow: 1px 20px 2rem rgb(127 127 127 / 12%);
}
.nav-overlay .nav-dropdown {
	position: relative;
	top: initial;
	left: initial;
	right: initial;
	width: 100%;
	box-shadow: none;
	padding: 0;
	overflow: visible;
}
.nav-dropdown.open, .nav-overlay .nav-dropdown{
	display: block;
}
.nav-dropdown-items{
	flex-direction: column;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 1fr;
	grid-auto-columns: 1fr;
	display: flex;
}
.nav-dropdown-item{
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	color: var(--text);
	border-radius: 0.75rem;
	flex: 1;
	grid-template-rows: auto;
	grid-template-columns: auto 1fr;
	grid-auto-columns: 1fr;
	align-content: start;
	align-items: start;
	padding: 0.75rem 1rem;
	transition-duration: .1s;
	transition-timing-function: cubic-bezier(1,0,0,1);
	display: flex;
	position: relative;
}
.nav-dropdown-item-text{
	grid-column-gap: 0.25rem;
	grid-row-gap: 0.5rem;
	flex-direction: column;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr;
	grid-auto-columns: 1fr;
	justify-items: start;
	display: flex;
}
.nav-dropdown-item:hover {
	background-color: #7e7e7e4a;
}
.nav-dropdown-items svg{
	width: 2rem;
	height: 2rem;
	flex: none;
	justify-content: center;
	align-items: center;
	display: flex;
	padding: 3px;
}
.main-wrap{
	padding-top: 4.5rem;
}
section {
    padding: 2rem 0;
}
.article-wrap, .wide-wrap, .wider-wrap {
    width: 100%;
    max-width: 70ch;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    flex: none;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
.wide-wrap {
    max-width: 80ch;
}
.wider-wrap {
    max-width: 90ch;
}
.article {
    grid-column-gap: 5rem;
    grid-row-gap: 3rem;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 70ch 1fr;
    grid-auto-columns: 1fr;
    align-self: stretch;
    display: flex;
    gap: 3rem;
}
aside {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    display: flex;
    position: relative;
    overflow-wrap: anywhere;
}
.article p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1em;
}
.article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: var(--large);
}
.article figure{
	width: 100%;
    max-width: 100%;
    text-align: center;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    display: block;
    min-width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
.article figure>div {
    padding-bottom: inherit;
    display: inline-block;
}
.article figure img {
    width: 100%;
}
.article img, .article iframe {
    border-radius: 0.5rem;
}
.article a{
    color: var(--color);
    text-decoration: underline;
    display: inline;
}
.hover-underline:hover{
	text-decoration: underline;
}
.bold { font-weight: 700;}
.mb0{
	margin-bottom: 0;
}
.mt-huge{
	margin-top: 3rem;
}
.text-small {
	font-size: var(--small);
	line-height: 18px;
}
.text-giga {
	font-size: var(--giga);
}
.tablet, .desktop{
	display: none;
}
.muted {
    opacity: 0.9;
}
.center{
	text-align: center;
	justify-content: center;
}
.explain-card {
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
    flex-direction: column-reverse;
    margin-top: 2rem;
}
.explain-card a:hover {
    color: var(--hover);
}
.explain-card img, .explain-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    position: relative;
	aspect-ratio: 2 / 1;
}
.explain-card video {
	object-fit: contain;
	background: black;
}
.explain-card svg {
    height: 20px;
}
.explain-card .button {
    width: fit-content;
    margin-block-start: 1em;
}
.explain-cat {
    display: flex;
    gap: 0.5rem;
}
.explain-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}
.explain-card h3 {
    font-size: var(--huge);
    margin: 0;
}
.testimonial {
    margin: 4rem 0.25rem;
    display: grid;
}
.testimonial h2 {
    font-size: 1.2em;
    font-size: 1.2em;
    font-weight: 500;
}
.testimonial footer {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    margin-top: 2rem;
}
.testimonial.center-tablet {
    margin: 2rem 0.25rem;
}
.testimonial.center-tablet footer {
    justify-content: start;
}
.testimonial-details p{
    margin: 0;
    text-align: left;
}
.testimonial-details p:first-of-type {
    font-weight: 700;
}
.testimonial-avatar img {
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.testimonial-details {
    display: grid;
    gap: 0.25rem;
}
.testimonial-details img {
    object-fit: contain;
    width: auto;
}


.lightbox {
	width: 100%;
	position: fixed;
	top: 0;
	bottom: -100px;
	padding-bottom: 100px;
	left: 0;
	right: 0;
	overflow: hidden;
	background-color: rgb(12 12 12 / 97%);
	z-index: 101;
	display: none;
}
.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    aspect-ratio: 16/9;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 0px 80px 0px #352006;
    box-shadow: 0px 0px 80px 0px #352006;
    border: 1px solid #7c60383d;
}

.lightbox .close {
    right: 0;
    position: absolute;
    top: 0;
    width: 2.5rem;
    transform: translate(-50%, 50%);
    padding: 0.5rem;
    cursor: pointer;
}

.lightbox .container {
    position: relative;
    height: 100vh;
}
.text-box-left {
    max-width: 650px;
    margin: 4rem 0 4rem 0;
}
.big-cat {
    font-size: var(--la);
    font-weight: 700;
    display: flex;
    gap: 0.5rem;
    margin-bottom: -2rem;
    margin-top: 2rem;
}

.big-cat svg {
    height: 20px;
}
.anchor {
    display: block;
    position: relative;
    top: -120px;
    visibility: hidden;
}


.logos-grid {
    display: flex;
    block-size: 60px;
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 15%, hsl(0 0% 0% / 1) 85%, hsl(0 0% 0% / 0));
    justify-content: space-between;
    margin: 2rem 0;
    gap: 8vw;
    justify-content: center;
}
.logos-grid img{
    height: 30px;
    object-fit: contain;
}

.cursor {
	animation: blink 1s infinite;
	font-weight: 100;
}
.cursor, .typeout {
	color: var(--color);
}
@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

.light-leak{
	background: conic-gradient(from 90deg, var(--color), transparent);
    width: 200px;
    height: 200px;
    filter: blur(100px);
    z-index: -1;
    position: fixed;
    left: 50%;
    top: 200px;
    transform: translate(-50%, 0);
    animation: leak 20s infinite;
    opacity: 0.8;
}
@keyframes leak {
	0% { filter: blur(110px);}
	50% { filter: blur(90px);}
	100% { filter: blur(110px);}
}


.feature-card {
    border-radius: 1rem;
    margin-top: 2rem;
    overflow: hidden;
}

.grid-25 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    padding: 3rem;
    margin-top: 2rem;
    background: #ffffff0a;
}
.grid-50-tablet {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    background: #ffffff0a;
}
.grid-25-tablet {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.grid-icon {
    display: grid;
    grid-template-columns: 33px auto;
    grid-gap: 1.5rem;
    align-items: center;
}
.grid-icon svg{
	aspect-ratio: 1 / 1;
}
.grid-33-tablet {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}

.grid-33-tablet > div {
    background: #383838a6;
    border-radius: 1rem;
    overflow: hidden;
}
.grid-33-tablet .top{
    
    padding: 2rem 2rem 1.5rem 2rem;
    background: #00000042;
	
}
.grid-33-tablet .bottom{
	padding: 0.5rem 2rem 1rem 2rem;
}


.thirds-tablet {
    display: grid;
    gap: 1.5rem;
}

.question {
    background-color: #2727277d;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.question .answer {
    background: #ffffff0a;
    padding: 0;
    height: 0px;
    opacity: 0;
    padding: 0 1.5rem;
}
.question .answer.open {
    background: #ffffff0a;
    padding: 1.5rem;
    opacity: 1;
}

.question .title {
    padding: 1.5rem;
    cursor: pointer;
}

@media screen and (min-width: 767px) {
	.navbar {
	    height: 80px;
	}
	.tablet{
		display: flex;
	}
	.no-tablet{
		display: none;
	}
	.center-tablet{
		text-align: center;
		justify-content: center;
	}
	.explain-card {
	    flex-direction: row;
	}
	.explain-view, .explain-content {
	    width: 50%;
	}
	.grid-50-tablet {
	    grid-template-columns: repeat(2, 1fr);
	    grid-gap: 2rem;
	    padding: 3rem;
	    margin-top: 2rem;
	}
	.grid-25-tablet {
	    grid-template-columns: repeat(4, 1fr);
	    grid-gap: 2rem;
	    padding: 3rem;
	    margin-top: 2rem;
	}

	.grid-33-tablet {
	    grid-template-columns: repeat(3, 1fr);
	    padding: 1.5rem;
	}
	.grid-icon {
	    grid-gap: 3rem;
	}
	.thirds-tablet {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	.testimonial.center-tablet footer {
	    justify-content: center;
	}
    .lng-plr{
        padding: 0 1.8em;
    }
}
@media screen and (min-width: 991px){
	.desktop{
		display: flex;
	}
	.no-desktop{
		display: none;
	}
}


@media screen and (max-width: 1035px){
	iframe.brevo {
	    height: 1020px;
	}
}
.show_on_mobile{
	display: none;
}
@media only screen and (max-width: 820px) { 
	.hide_on_mobile{
	    display: none;
	}
	.show_on_mobile{
		display: block;
	}
    .language-switcher-header {
        display: none;
    }
	/*.nav-item .nav-dropdown {
		min-width: auto;
		width: auto;
		right: 0;
		left: auto;
		top: 60px;
	}*/
	.nav-item .nav-dropdown-items {
		flex-direction: column;
		grid-template-columns: 1fr;
	}
}

.banner2 {
    width: 100%;
    height: 100%;
    background-color: #373737;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    min-height: 329px;
    max-height: 50vh;
}
aside .banner2{
    max-height: 50vh;
}
.banner2 .cta-button {
    display: block;
    width: fit-content;
    padding: 10px;
    background-color: #ff9429;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 auto;
    font-size: initial;
}
.banner2 .cta-button:hover {
    color: #efefef;
}
.banner2 small {
    font-size: 15px;
}
.banner2 .title-1, .title-2, .title-3{
    font-size: 20px;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7, 0.7);
    color: white;
    text-align: center;
    width: 90%;
    max-width: 420px;
    opacity: 0;
}
.banner2 .title-3{
    transform: translate(-50%, -50%) scale(1.4, 1.4);
    color: white;
    text-align: center;
    opacity: 0;
}
.banner2 .container-1{
    position: relative;
    width: 100%;
    height: 100%;
}
.banner2 .slab,
.banner2 .treppe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    background: #848482;
}
.banner2 .treppe {
    filter: brightness(0.9);
}
a.button.marmomac {
    background: #e6007e;
    color: white;
    padding: 0.5rem 0.75rem;
}

a.marmomac svg {
    height: 17px;
    color: white;
}

/* ═══ Global Scroll Reveal System ═══ */

/* Base hidden states – only when JS is active (graceful degradation) */
.reveal-ready [data-reveal] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Direction variants – subtle movement, just enough to guide the eye */
.reveal-ready [data-reveal="fade-up"]    { transform: translateY(20px); }
.reveal-ready [data-reveal="fade-down"]  { transform: translateY(-20px); }
.reveal-ready [data-reveal="fade-left"]  { transform: translateX(20px); }
.reveal-ready [data-reveal="fade-right"] { transform: translateX(-20px); }
.reveal-ready [data-reveal="scale-in"]   { transform: scale(0.94); }

/* Draw-line: don't hide the container, only animate ::before */
.reveal-ready [data-reveal="draw-line"] {
    opacity: 1;
    transform: none;
}
.reveal-ready [data-reveal="draw-line"]::before {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Revealed state */
[data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
}
[data-reveal="draw-line"].is-visible::before {
    transform: scaleY(1);
}

/* Stagger children */
.reveal-ready [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
[data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: none;
}

/* ═══ Scroll-Driven Effects ═══ */

/* Parallax (uses `translate` property – stacks with transform, no conflicts) */
[data-parallax] { will-change: translate; }

/* Scroll-progress line (interactive workflow timeline) */
.reveal-ready [data-scroll-progress]::after {
    transform: scaleY(var(--scroll-progress, 0));
    transform-origin: top;
}

/* Step number spring pop */
.reveal-ready [data-reveal-stagger] > * > [class*="-step-num"] {
    scale: 0;
}
[data-reveal-stagger].is-visible > * > [class*="-step-num"] {
    scale: 1;
    transition: scale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Tilt is handled purely via hover effects in page-scoped CSS */

/* Counter: tabular figures for stable width during animation */
[data-count] { font-variant-numeric: tabular-nums; }

/* Floating decorative elements */
@keyframes gentleFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}
[data-float] { animation: none; }
.is-visible [data-float],
[data-float].is-visible {
    animation: gentleFloat 5s ease-in-out infinite;
}

/* Hero entrance – CSS-only, no JS wait (minimal FCP impact) */
@keyframes heroRevealUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}
@keyframes heroRevealLeft {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: none; }
}
@keyframes heroRevealRight {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: none; }
}
.reveal-ready [data-hero="fade-up"] {
    animation: heroRevealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.reveal-ready [data-hero="fade-right"] {
    animation: heroRevealRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.reveal-ready [data-hero="fade-left"] {
    animation: heroRevealLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-ready [data-reveal],
    .reveal-ready [data-reveal-stagger] > *,
    .reveal-ready [data-hero] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    .reveal-ready [data-reveal="draw-line"]::before {
        transform: scaleY(1) !important;
        transition: none !important;
    }
    [data-parallax] { translate: none !important; }
    [data-float] { animation: none !important; }
    .reveal-ready [data-scroll-progress]::after { transform: scaleY(1) !important; }
    .reveal-ready [data-reveal-stagger] > * > [class*="-step-num"] { scale: 1 !important; }
}:root{
    --color: #868e96;    
    --contrast: #ffffff;

    --blender: var(--color);
    --button: #dfdfdf;
    --orange: #ff9429;
    --red: #e92416;
    --yellow: #fad000;
    --green: #33a433;
    --blue: #3b82f6;
    --white: #ffffff;
    --gray: #717171;
    --text: #292929;
    --textdark: #ffffff;
    --back: #ffffff;
    --header-back: #ffffff80;
    --vcard: #dbdbdb;
    --input: #dfdfdf;
    --boxbg: #f3f3f3;
    --checkboxbg: #ebebeb;
    --chart_back: #f0f0f0;
    --boxbg: #f1f1f1;
    --table: #ebebeb;
    --table-hover: #e7e7e7;
    --slabdark: #e5e5e5;
    --border-color: #c4c4c4;
    --button-back: #cacaca;
    --text-muted: #6d6d6d;
}

select, .dropdown-header {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23292929' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' width='50px' height='50px'><polyline points='5,15 25,35 45,15'/></svg>")!important;
    background-color: var(--input)!important;
    background-repeat: no-repeat!important;
    background-position: right 10px top 6px!important;
    background-size: 15px 15px!important;
}


input, textarea, select {
  color-scheme: light;
}