:root {
    --clip-angle: 40px;
    --section-separator-height: -34px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: #1d1d1f;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: -0.01em;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
}

nav a[href="#login"] {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

nav a[href="#login"]:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #b91c1c;
    border-color: rgba(220, 38, 38, 0.3);
}

.hero {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
/*    transform: translateX(0%); */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 2rem;
    max-width: 40%;
}

.hero h1 {
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 4.5vw; /* 3.1rem; */
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.1vw; /* 1.5rem; */
    margin-top: 40px;
    font-weight: 400;
    color: #1d1d1f;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-ai {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 6vw;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.features {
    background-color: #ffffff;
}

.feature-section {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% var(--clip-angle), 100% calc(100% - var(--clip-angle)), 0 100%);
    margin-bottom: var(--section-separator-height);
}

.feature-section.reverse {
    clip-path: polygon(0 var(--clip-angle), 100% 0, 100% 100%, 0 calc(100% - var(--clip-angle)));
}

.feature-section:last-child {
/*    clip-path: polygon(0 0, 100% var(--clip-angle), 100% 100%, 0 100%); */
    clip-path: polygon(0 var(--clip-angle), 100% 0, 100% 100%, 0 100%);   
    margin-bottom: 0;
}

.feature-section:first-child {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-angle)), 0 100%); 
/*    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--clip-angle))); */
    margin-top: 0;
}

.feature-image-full {
    position: relative;
    width: 100%;
    max-height: 80vh;
    z-index: 1;
    overflow: hidden;
}

.feature-image-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image-full img[src*="images_zoomed"],
.feature-image-full img[src*="shutters_dynamic"] {
    transform: scaleX(-1);
    transition: none;
}

.feature-section:hover .feature-image-full img {
    transform: scale(1.03);
}

.feature-section:hover .feature-image-full img[src*="images_zoomed"],
.feature-section:hover .feature-image-full img[src*="shutters_dynamic"] {
    transform: scaleX(-1);
}

.feature-image-full.platforms-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.feature-image-full.platforms-bg img {
    position: relative;
    z-index: 1;
}

.feature-content-wrapper {
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    z-index: 2;
/*    background: green; */
}

.feature-content-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(200%);
    padding: 1rem;
    margin-bottom: 0;
    border-radius: 20px 20px 0px 0px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.8s ease-out;
    transform: translateY(100%);
    max-width: 400px;
}

.feature-section.reverse .feature-content-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--clip-angle)));
}

.feature-section:not(.reverse) .feature-content-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--clip-angle)), 0 100%);
}

.feature-section:last-child .feature-content-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}


.feature-content-wrapper.visible {
    opacity: 1;
}

.feature-content-wrapper.visible .feature-content-overlay {
    transform: translateY(0);
    opacity: 1;
}

.feature-content-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 20px 20px 0px 0px;
    pointer-events: none;
    z-index: -1;
}

.feature-section.reverse .feature-content-overlay {
    margin-right: 1rem;
    margin-left: auto;
}

.feature-section:not(.reverse) .feature-content-overlay {
    margin-right: auto;
    margin-left: 1rem;
}

.feature-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.feature-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
    position: relative;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.feature-text p {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
    font-size: 1.0rem;
    font-weight: 4600;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0 0 2rem 0;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.5rem 1.55rem;
    background: #dc2626;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    margin-bottom: 10px;
}

.feature-section.reverse .learn-more-btn {
    margin-left: auto;
}

.learn-more-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-cards {
    padding: 4rem 0;
    background-color: #ffffff;
}

.info-cards .container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.info-card {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(200%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.info-card h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.info-card p {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem 0;
}

.image-carousel {
    padding: 2rem 0 4rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: carousel-scroll 10s linear infinite;
}

.carousel-track img {
    height: 300px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #86868b;
    font-style: italic;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-bar {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem 0;
    border-top: 1px solid rgba(226, 232, 240, 0.3);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow:
        0 2px 20px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
}

.intro-text {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 50%, #ffffff 100%);
}

.intro-text p {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.logo-scroll {
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-track img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

footer {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem 0;
    border-top: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 
        0 -2px 20px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

footer p {
    color: #86868b;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

footer .legal-info {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.jobs-hero {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.jobs-hero h1 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.jobs-hero .hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
}

.jobs-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.job-posting {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px) saturate(200%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.job-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.job-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.job-meta {
    display: flex;
    gap: 2rem;
    color: #86868b;
    font-size: 0.95rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.job-section p {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.job-section ul {
    list-style: none;
    padding-left: 0;
}

.job-section ul li {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 600;
}

.job-apply {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    :root {
	--clip-angle: 15px;
	--section-separator-height: -10px;
    }
    
    .feature-content-wrapper {
	bottom: -10%;
    }

    .hero-image {
	width: 110%;
    }
    
    .hero-text {
	padding: 1rem;
	max-width: 50%;
    }
    .hero h1 {
	font-size: 3.8vw;
    }
    .hero h3 {
	font-size: 2.5vw;
    }
    
    .intro-text {
	padding: 1rem 20px;
    }

    .intro-text p {
	font-size: 1rem;
    }

    .logo-track img {
	height: 30px;
    }
    
    .learn-more-btn {
	display: none;
    }

    .feature-content-overlay {
	max-width: unset;
    }
    .feature-section.reverse .feature-content-overlay {
	margin-right: .2rem;
	margin-left: .2rem;
    }
    
    .feature-section:not(.reverse) .feature-content-overlay {
	margin-right: .2rem;
	margin-left: .2rem;
    }

    .feature-text h3 {
	font-size: .8rem;
	margin-bottom: .4rem;
    }

    .feature-text p {
	margin-bottom: 15px;
	font-size: .7rem;
	padding-bottom: 10px;
    }

    .container {
	padding: 0px 0px;
    }
    
    
    .info-cards .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-card {
        max-width: none;
	margin-left: 10px;
	margin-right: 10px;
    }

    .carousel-track img {
	height: 100px;
    }
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .jobs-hero {
        padding: 3rem 0 2rem 0;
    }

    .jobs-hero h1 {
        font-size: 2rem;
    }

    .jobs-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .job-posting {
        padding: 2rem 1.5rem;
    }

    .job-header h2 {
        font-size: 1.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

