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

/* Design Tokens */
:root {
    /* Fonts */
    --font-family: 'Red Hat Display', sans-serif;
    --font-mono: 'Inconsolata', monospace;

    /* Colors */
    --principal-color: #7bef96;
    --secondary-color: #ffe39f;
    --tertiary-color: #ff594e;
    --principal-color-opac: #7bef9675;
    --secondary-color-opac: #ffe39f75;
    --tertiary-color-opac: #ff594e75;
    --second-layer-color: #f5f5f5;
    --third-layer-color: #f7f7f775;
    --active-layer-color: #f7f7f7;
    --black: #292929;
    --dark-warm-color: #131313;
    --gray-color: #707070;
    --ui-gray-color: #d9d9d980;
    --selected-blue: #0041be;
    --not-selected-blue: #0041be40;
    --soft-yellow: #FFDC85;
    --panel: #ececec;

    --super-light-border: rgba(0,0,0,0.2);
    --light-border: #e3e0df;
    --strong-border: #292929;

    --pure-white: #ffffff;
    --deep-black: #131313;

    --border-color: #292929;
    --section-border-focus: rgba(41,41,41,0.5);

    --foreground: #FEFEFE;
    --background: #fbfbfb;

    /* Gradients */
    --nav-gradient: linear-gradient(180deg, #ddebff 0%, #fbfbfb 100%);
    --light-blue-vignette: linear-gradient(90deg, rgba(149, 182, 255, 0.2) 0%, rgba(149, 182, 255, 0) 100%);
    --soft-yellow-gradient: linear-gradient(180deg, rgba(255, 194, 45, 0.2) 0%, rgb(255, 220, 133) 60%);
    --green-gradient: linear-gradient(180deg, #cdf8d7 0%, #7bef96 60%);
    --light-green-gradient: linear-gradient(rgba(205, 248, 215, 0.35) 0%, rgba(51, 226, 92, 0.35) 51.923%), linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    --red-gradient: linear-gradient(rgb(255, 173, 168) 0%, rgb(255, 88, 78) 51.923%), linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    --light-red-gradient: linear-gradient(rgba(250, 224, 222, 0.5) 0%, rgba(255, 88, 78, 0.5) 51.923%), linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    --button-gradient: linear-gradient(90deg, rgb(255, 227, 159) 0%, rgba(255, 255, 255, 0) 100%);
    --white-ramp-button: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    --light-yellow-gradient: linear-gradient(180deg, #fff9e6 0%, #eec456 100%);
    --super-light-yellow-gradient: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 138.46%), linear-gradient(90deg, #ffe39f 0%, #ffe39f 100%);
    --super-light-green-gradient: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 138.46%), linear-gradient(90deg, #7bef96 0%, #7bef96 100%);

    /* Layout */
    --nav-height: 64px;

    /* Spacing */
    --space-xxs: 3px;
    --space-xs: 7px;
    --space-step: 10px;
    --space-s: 14px;
    --space-m: 20px;
    --space-l: 34px;
    --space-xl: 54px;

    /* Labels */
    --label-blue: #709CFF;
    --label-red: #E1657A;
    --label-purple: #8E65E1;
}

body {
    font-family: var(--font-family);
    color: var(--black);
    background: var(--background);
    overflow-x: hidden;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    padding-bottom: 80px;
    z-index: 1000;
    background: transparent;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(221, 235, 255, 0.95) 0%,
        rgba(245, 248, 252, 0.6) 40%,
        rgba(251, 251, 251, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled::after {
    opacity: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    padding-bottom: 2px;
}

.logo-title {
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-black);
}

.logo-underline {
    height: 2px;
    width: 134px;
    display: flex;
    margin-top: -2px;
}

.underline-yellow {
    background: var(--secondary-color);
    width: 79px;
    height: 2px;
}

.underline-red {
    background: var(--tertiary-color);
    width: 41px;
    height: 2px;
}

.underline-green {
    background: var(--principal-color);
    width: 14px;
    height: 2px;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.menu-button {
    background: var(--white-ramp-button),
                linear-gradient(90deg, var(--pure-white) 0%, var(--pure-white) 100%);
    border: none;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px var(--super-light-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button:hover {
    background: var(--white-ramp-button),
                linear-gradient(90deg, var(--active-layer-color) 0%, var(--active-layer-color) 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 900px;
    background: linear-gradient(180deg, #DDEBFF 0%, rgba(251, 251, 251, 0) 50%), var(--background);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        68.517% 47.899% at 50% 50%,
        var(--pure-white) 0%,
        transparent 100%
    );
    opacity: 0.3;
    pointer-events: none;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-highlight-1 {
    position: absolute;
    left: 91px;
    top: 282px;
    width: 230.81px;
    height: 195.159px;
    background-image: url('assets/highlight-11.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-misc-1 {
    position: absolute;
    right: 50.4%;
    left: 44.31%;
    top: 64.81%;
    bottom: 27.63%;
    background-image: url('assets/misc-03-group.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-highlight-2 {
    position: absolute;
    right: 82.46%;
    left: 8.53%;
    top: 62.63%;
    bottom: 25.77%;
    background-image: url('assets/highlight-04-group-1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(32.665deg);
}

.hero-highlight-3 {
    position: absolute;
    left: 685px;
    top: 304px;
    width: 71.407px;
    height: 77.297px;
    background-image: url('assets/highlight-01-group.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-misc-2 {
    position: absolute;
    left: 655px;
    top: 274px;
    width: 50px;
    height: 50px;
    background-image: url('assets/misc-01-group.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    top: 343px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-video-container {
    flex-shrink: 0;
}

.hero-video {
    width: 515px;
    height: 371px;
    border: 5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.hero-video img,
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
    gap: 23px;
}

.hero-title {
    font-weight: 700;
    font-size: 55px;
    line-height: 63px;
    width: 468px;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
}

.hero-subtitle strong {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 11px;
    align-items: center;
}

.btn {
    border: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 0px 0px 1px var(--super-light-border);
    transition: transform 0.2s ease;
}

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

.btn-primary {
    background: var(--white-ramp-button),
                linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    font-weight: 500;
    color: var(--black);
}

.btn-secondary {
    background: var(--white-ramp-button),
                linear-gradient(90deg, var(--pure-white) 0%, var(--pure-white) 100%);
    font-weight: 600;
    color: var(--black);
}

.hero-underline {
    width: 264.325px;
    height: 23.241px;
}

.hero-underline img {
    width: 100%;
    height: 100%;
}

/* Mission Section */
.mission-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        68.517% 47.899% at 50% 50%,
        var(--pure-white) 0%,
        transparent 100%
    );
    opacity: 0.3;
    pointer-events: none;
}

.mission-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 26px;
    line-height: 1.6;
    width: 700px;
    max-width: 90%;
    position: relative;
    text-align: center;
}

.mission-text {
    margin-bottom: 24px;
}

.mission-text strong {
    font-weight: 700;
}

.mission-text-cuco {
    margin-top: 0;
}

.mission-text-cuco strong {
    font-weight: 700;
}

.mission-tagline {
    display: inline-block;
    font-weight: 700;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.3s;
}

.mission-section.visible .mission-tagline {
    opacity: 1;
    transform: translateY(0);
}

.cuco-icon {
    font-family: 'Euphemia UCAS', sans-serif;
    font-weight: 700;
}

.mission-underline {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 28px;
}

.mission-underline img {
    width: 100%;
    height: 100%;
}

/* Steps Section */
.steps-section {
    position: relative;
    height: 100vh;
    min-height: 900px;
    background: var(--background);
    border-radius: 10px;
    padding: 100px 140px 140px;
}

.steps-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    color: var(--black);
    width: 100%;
    text-align: center;
    margin-bottom: 120px;
}

.steps-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: calc(100% - 170px);
    margin: 0 auto;
}

.step {
    position: absolute;
}

.step::before {
    display: none;
}

.step-content {
    display: contents;
}

.step-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.13;
    color: var(--black);
    white-space: pre;
}

.step-1 {
    left: 0;
    top: 0;
}

.step-1 .step-video {
    margin-top: 35px;
    width: 480px;
    height: 210px;
    overflow: hidden;
    border-radius: 10px;
}

.step-1 .step-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.step-2 {
    right: 0;
    top: 0;
}

.step-2 .step-video {
    margin-top: 35px;
    width: 400px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

.step-2 .step-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-3 {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.step-3 .step-video {
    width: 480px;
    height: 295px;
    overflow: hidden;
    border-radius: 10px;
}

.step-3 .step-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-3 .step-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -75px;
    text-align: center;
}

.arrow {
    position: absolute;
    width: 110px;
    height: 110px;
}

.arrow img {
    width: 100%;
    height: 100%;
}

.arrow-1 {
    left: 50%;
    top: 40px;
    transform: translateX(-50%) rotate(215deg);
}

.arrow-2 {
    right: 5%;
    top: 72%;
    transform: rotate(25deg);
}

/* Styles Section */
.styles-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--second-layer-color);
    overflow: hidden;
}

.styles-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        75.6% 56.85% at 50% 50%,
        var(--pure-white) 0%,
        transparent 100%
    );
    opacity: 0.2;
    pointer-events: none;
}

.styles-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.style-dec-1,
.style-dec-2,
.style-dec-3,
.style-dec-4,
.style-dec-5,
.style-dec-6,
.style-dec-7,
.style-dec-8,
.style-dec-9 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

.style-dec-1 {
    left: 40px;
    top: 60px;
    width: 60px;
    height: 60px;
    background-image: url('assets/01-smooth-01.svg');
    transform: rotate(320deg);
}

.style-dec-2 {
    right: 180px;
    top: 80px;
    width: 70px;
    height: 70px;
    background-image: url('assets/01-smooth-02.svg');
    transform: rotate(25deg);
}

.style-dec-3 {
    left: 100px;
    bottom: 80px;
    width: 90px;
    height: 90px;
    background-image: url('assets/01-smooth-12.svg');
    transform: rotate(60deg);
}

.style-dec-4 {
    right: 140px;
    bottom: 60px;
    width: 75px;
    height: 75px;
    background-image: url('assets/01-smooth-01-1.svg');
    transform: rotate(190deg);
}

.style-dec-5 {
    right: 40px;
    top: 30px;
    width: 65px;
    height: 65px;
    background-image: url('assets/01-smooth-01.svg');
    transform: rotate(305deg);
}

.style-dec-6 {
    right: 280px;
    bottom: 140px;
    width: 80px;
    height: 80px;
    background-image: url('assets/01-smooth-02.svg');
    transform: rotate(145deg);
}

.style-dec-7 {
    right: 80px;
    bottom: 200px;
    width: 70px;
    height: 70px;
    background-image: url('assets/01-smooth-12.svg');
    transform: rotate(80deg);
}

.style-dec-8 {
    left: 60px;
    top: 40%;
    width: 75px;
    height: 75px;
    background-image: url('assets/01-smooth-01-1.svg');
    transform: rotate(265deg);
}

.style-dec-9 {
    left: 25px;
    bottom: 200px;
    width: 85px;
    height: 85px;
    background-image: url('assets/01-smooth-02.svg');
    transform: rotate(110deg);
}

.styles-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    color: var(--black);
    text-align: center;
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 1398px;
}

.styles-video-container {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 465px;
    border: 5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.styles-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.styles-description {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 30px;
    color: var(--black);
    text-align: center;
    width: 550px;
    max-width: 90%;
}

.styles-description strong {
    font-weight: 700;
}

/* Many Ways Section - 3D Parallax Video Mosaic */
.manyways-section {
    position: relative;
    background: var(--background);
    height: 100vh;
    min-height: 800px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.manyways-header {
    position: relative;
    text-align: center;
    z-index: 100;
}

.manyways-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 1.13;
    color: var(--black);
    text-align: center;
    margin: 0 auto var(--space-m);
    max-width: 400px;
    text-shadow:
        0 0 30px var(--background),
        0 0 60px var(--background),
        0 0 90px var(--background),
        0 0 120px var(--background);
}

.manyways-decoration {
    width: 200px;
    height: 16px;
    margin: 0 auto;
}

.manyways-decoration img {
    width: 100%;
    height: 100%;
}

/* Mosaic Container - 3D perspective space */
.manyways-mosaic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.mosaic-video {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--black);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.8s ease;
    transform-style: preserve-3d;
    --parallax-y: 0px;
}

.mosaic-video.visible {
    opacity: 1;
}

.mosaic-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Back layer */
/* Video 1 - Portrait 4:5, far back, top-left */
.mosaic-video-1 {
    width: 180px;
    aspect-ratio: 4/5;
    left: 8%;
    top: 10%;
    transform: translateY(var(--parallax-y)) translateZ(-200px);
    z-index: 1;
}

/* Video 4 - Landscape 16:9, far back, top-right */
.mosaic-video-4 {
    width: 280px;
    aspect-ratio: 16/9;
    right: 8%;
    top: 8%;
    transform: translateY(var(--parallax-y)) translateZ(-250px);
    z-index: 1;
}

/* Mid layer */
/* Video 2 - Landscape 16:9, mid depth, upper center-left */
.mosaic-video-2 {
    width: 220px;
    aspect-ratio: 16/9;
    left: 22%;
    top: 18%;
    transform: translateY(var(--parallax-y)) translateZ(-80px) rotate(-2deg);
    z-index: 3;
}

/* Video 5 - Almost square 1080:892, mid depth, right of center */
.mosaic-video-5 {
    width: 240px;
    aspect-ratio: 1080/892;
    right: 10%;
    top: 35%;
    transform: translateY(var(--parallax-y)) translateZ(-60px) rotate(1deg);
    z-index: 4;
}

/* Front layer */
/* Video 3 - Landscape 16:9, front, left overlapping center */
.mosaic-video-3 {
    width: 300px;
    aspect-ratio: 16/9;
    left: 3%;
    top: 50%;
    transform: translateY(calc(-50% + var(--parallax-y))) translateZ(60px) rotate(-1deg);
    z-index: 6;
}

/* Video 6 - Portrait 4:5, front, bottom center-left */
.mosaic-video-6 {
    width: 200px;
    aspect-ratio: 4/5;
    left: 28%;
    bottom: 8%;
    transform: translateY(var(--parallax-y)) translateZ(40px) rotate(2deg);
    z-index: 5;
}

/* Video 7 - Landscape 16:9, front, bottom-right prominent */
.mosaic-video-7 {
    width: 340px;
    aspect-ratio: 16/9;
    right: 5%;
    bottom: 10%;
    transform: translateY(var(--parallax-y)) translateZ(80px) rotate(-1.5deg);
    z-index: 7;
}

.manyways-text {
    width: 500px;
    max-width: 90%;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
    margin: 0 auto var(--space-xl);
}

.manyways-text p {
    margin: 0;
}

/* Workflows Section */
.workflows-section {
    position: relative;
    padding: var(--space-xl) var(--space-l);
    max-width: 1200px;
    margin: 0 auto;
}

.workflows-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 1.1;
    color: var(--black);
    text-align: center;
    margin-bottom: var(--space-l);
}

.workflows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
}

.workflows-grid .workflow-card:last-child {
    grid-column: 2;
}

.workflow-card {
    background: var(--pure-white);
    border-radius: 10px;
    padding: var(--space-m);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--light-border);
    max-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.workflow-pain {
    font-size: 14px;
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.4;
    margin-bottom: var(--space-s);
}

.workflow-solution {
    font-weight: 800;
    font-size: 20px;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.workflow-benefit {
    font-size: 14px;
    color: var(--black);
    line-height: 1.4;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 501px) {
    .workflows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile - single column */
@media (max-width: 500px) {
    .workflows-section {
        padding: var(--space-l) var(--space-m);
    }

    .workflows-title {
        font-size: 34px;
        margin-bottom: var(--space-m);
    }

    .workflows-grid {
        grid-template-columns: 1fr;
        gap: var(--space-s);
    }

    .workflow-card {
        padding: var(--space-s);
        max-width: 100%;
    }

    .workflow-solution {
        font-size: 18px;
    }
}

/* Private Section */
.private-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 150px;
    margin-bottom: 150px;
    min-height: 600px;
    background: var(--second-layer-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
}

.private-decorations {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    pointer-events: none;
}

.private-dec-left,
.private-dec-right {
    position: absolute;
    width: 120px;
    height: 150px;
    background-image: url('assets/04-smooth-01.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.private-dec-left {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg) scaleY(-1);
}

.private-dec-right {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.private-content {
    text-align: center;
    position: relative;
}

.private-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    color: var(--black);
    white-space: pre-wrap;
    margin-bottom: 30px;
}

.private-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    color: var(--black);
}

/* Final CTA */
.final-cta {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1196.41px;
    min-height: 500px;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-dec-1,
.cta-dec-2,
.cta-dec-3,
.cta-dec-4,
.cta-dec-5,
.cta-dec-6,
.cta-dec-7 {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Lightbulb - top center */
.cta-dec-1 {
    left: 50%;
    transform: translateX(-50%) rotate(14.403deg);
    top: 0;
    width: 101.574px;
    height: 87.064px;
    background-image: url('assets/01-smooth-06.svg');
}

/* Megaphone - far right */
.cta-dec-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(24.065deg);
    width: 104px;
    height: 109px;
    background-image: url('assets/01-smooth-05.svg');
}

/* Paper plane - top right */
.cta-dec-3 {
    right: 8%;
    top: 8%;
    width: 146px;
    height: 118px;
    background-image: url('assets/09-smooth-15.svg');
}

/* Flower - bottom left */
.cta-dec-4 {
    left: 15%;
    bottom: 15%;
    width: 86px;
    height: 91px;
    background-image: url('assets/09-smooth-19.svg');
}

/* Sun/spiral - bottom right */
.cta-dec-5 {
    right: 5%;
    bottom: 10%;
    width: 79px;
    height: 77px;
    background-image: url('assets/01-smooth-16.svg');
}

/* Hearts - left side */
.cta-dec-6 {
    left: 3%;
    top: 55%;
    width: 56px;
    height: 70px;
    background-image: url('assets/01-smooth-19.svg');
}

/* Star - top left */
.cta-dec-7 {
    left: 5%;
    top: 15%;
    width: 153px;
    height: 135px;
    background-image: url('assets/09-smooth-17.svg');
    transform: rotate(86.398deg);
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    text-align: center;
}

.cta-title {
    font-weight: 700;
    font-size: 55px;
    line-height: 68px;
    color: var(--black);
    width: 724px;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    line-height: normal;
    color: var(--black);
    margin-bottom: 10px;
}

.btn-cta {
    background: var(--soft-yellow-gradient),
                linear-gradient(90deg, var(--pure-white) 0%, var(--pure-white) 100%);
    font-weight: 800;
    font-size: 24px;
    color: var(--black);
    padding: 10px 12px;
    min-width: 184px;
    box-shadow: 0px 0px 0px 1px var(--super-light-border);
}

.btn-nav {
    background: var(--principal-color);
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    padding: 12px 24px;
    text-decoration: none;
}

.btn-nav:hover {
    background: var(--principal-color-opaque);
}

/* Footer */
.footer {
    position: relative;
    background: var(--pure-white);
    padding: 80px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Euphemia UCAS', sans-serif;
    font-weight: 700;
    font-size: 120px;
    line-height: normal;
    letter-spacing: -15.4px;
    color: var(--black);
    text-align: left;
    white-space: pre;
    margin-bottom: 40px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: normal;
    color: var(--black);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    color: var(--black);
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 1.19px;
    color: var(--black);
    text-align: center;
    border-top: 1px solid var(--light-border);
    padding-top: 30px;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1600px) {
    .hero-content,
    .steps-container,
    .cta-content {
        max-width: 90%;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-section {
        height: auto;
        padding: 100px 20px 60px;
    }

    .steps-container {
        width: 100%;
    }

    .footer-columns {
        gap: 50px;
        margin-left: 50px;
    }

    .final-cta {
        margin-bottom: var(--space-xl);
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Many Ways Section - reduce perspective and sizes */
    .manyways-section {
        height: 550px;
        min-height: 550px;
    }

    .manyways-mosaic {
        perspective: 800px;
    }

    .mosaic-video-1 { width: 140px; }
    .mosaic-video-2 { width: 180px; }
    .mosaic-video-3 { width: 240px; }
    .mosaic-video-4 { width: 220px; }
    .mosaic-video-5 { width: 190px; }
    .mosaic-video-6 { width: 160px; }
    .mosaic-video-7 { width: 260px; }

    .manyways-title {
        font-size: 38px;
        line-height: 44px;
    }

    /* Steps Section - slightly reduce sizing */
    .steps-title {
        font-size: 42px;
        line-height: 48px;
    }

    .step-1 .step-video {
        width: 400px;
        height: 180px;
    }

    .step-2 .step-video {
        width: 350px;
        height: 300px;
    }

    .step-3 .step-video {
        width: 400px;
        height: 250px;
    }

    /* Styles Section */
    .styles-title {
        font-size: 42px;
        line-height: 48px;
        width: 90%;
    }

    .styles-video-container {
        width: 650px;
        height: 400px;
    }

    /* CTA Section */
    .cta-title {
        font-size: 45px;
        line-height: 55px;
        width: 600px;
    }

    /* Private Section */
    .private-title {
        font-size: 42px;
        line-height: 48px;
    }

    .private-dec-left,
    .private-dec-right {
        width: 100px;
        height: 130px;
    }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 16px 24px;
    }

    .logo-title {
        font-size: 18px;
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 100px 32px 80px;
    }

    .hero-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0;
    }

    .hero-video {
        width: 100%;
        height: auto;
        aspect-ratio: 515/371;
        border: 4px solid var(--border-color);
    }

    .hero-video img,
    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-text {
        width: 100%;
    }

    .hero-tag {
        align-items: center;
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-decorations {
        display: none;
    }

    .hero-underline {
        width: 200px;
        height: auto;
    }

    .hero-underline img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Mission Section */
    .mission-section {
        height: auto;
        min-height: auto;
        padding: 80px 32px;
    }

    .mission-box {
        width: 100%;
        font-size: 24px;
        line-height: 1.5;
        padding: 0;
        border: none;
    }

    .mission-underline {
        display: none;
    }

    /* Steps Section */
    .steps-section {
        height: auto;
        padding: 60px 32px;
    }

    .steps-title {
        font-size: 38px;
        line-height: 44px;
        width: 100%;
        margin-bottom: 48px;
    }

    .steps-container {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 56px;
    }

    .step {
        position: relative !important;
        left: 0 !important;
        right: auto !important;
        top: 0 !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .step::before {
        content: attr(data-step-number);
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--black);
        color: var(--foreground);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 24px;
        margin-top: 4px;
    }

    .step-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .step-title {
        font-size: 22px;
        line-height: 28px;
        font-weight: 600;
        white-space: normal;
        margin-bottom: 0;
        position: static;
        left: unset;
        transform: none;
        bottom: unset;
        text-align: left;
    }

    /* Override Step 3's desktop absolute positioning */
    .step-3 .step-title {
        position: static !important;
        left: unset !important;
        transform: none !important;
        bottom: unset !important;
        text-align: left !important;
    }

    .step-1 .step-video,
    .step-2 .step-video,
    .step-3 .step-video {
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .step-1 .step-video {
        aspect-ratio: 480/210;
    }

    .step-2 .step-video {
        aspect-ratio: 400/350;
    }

    .step-3 .step-video {
        aspect-ratio: 480/295;
    }

    .step-1 .step-video video,
    .step-2 .step-video video,
    .step-3 .step-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .arrow {
        display: none;
    }

    /* Styles Section */
    .styles-section {
        height: auto;
        min-height: auto;
        padding: 80px 32px;
    }

    .styles-title {
        font-size: 38px;
        line-height: 44px;
        width: 100%;
        position: relative;
        top: 0;
        margin: 0 auto 40px;
    }

    .styles-video-container {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: auto;
        aspect-ratio: 750/465;
        margin: 40px 0;
        border: 4px solid var(--border-color);
    }

    .styles-description {
        position: relative;
        bottom: 0;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin: 40px auto 0;
    }

    .styles-decorations {
        display: none;
    }

    /* Many Ways Section - Mobile collage layout */
    .manyways-section {
        position: relative;
        height: 110vh;
        min-height: 700px;
        max-height: 900px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .manyways-header {
        position: relative;
        z-index: 50;
        margin-bottom: 0;
    }

    .manyways-title {
        font-size: 28px;
        line-height: 34px;
        max-width: 220px;
        text-shadow:
            0 0 20px var(--background),
            0 0 40px var(--background),
            0 0 60px var(--background);
    }

    .manyways-decoration {
        width: 120px;
        height: 10px;
    }

    .manyways-mosaic {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        perspective: none;
        transform-style: flat;
    }

    .mosaic-video {
        position: absolute !important;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid var(--black);
        --parallax-y: 0px !important;
        display: block !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .mosaic-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Video 1 - Top left */
    .mosaic-video-1 {
        width: 115px !important;
        aspect-ratio: 4/5 !important;
        left: 4% !important;
        top: 6% !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(-3deg) !important;
        z-index: 2;
    }

    /* Video 2 - Top right */
    .mosaic-video-2 {
        width: 130px !important;
        aspect-ratio: 16/9 !important;
        right: 5% !important;
        top: 4% !important;
        left: auto !important;
        bottom: auto !important;
        transform: rotate(2deg) !important;
        z-index: 3;
    }

    /* Video 3 - Left middle */
    .mosaic-video-3 {
        width: 140px !important;
        aspect-ratio: 16/9 !important;
        left: -5% !important;
        top: 32% !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(-2deg) !important;
        z-index: 4;
    }

    /* Video 4 - Right middle */
    .mosaic-video-4 {
        width: 120px !important;
        aspect-ratio: 16/9 !important;
        right: -3% !important;
        top: 38% !important;
        left: auto !important;
        bottom: auto !important;
        transform: rotate(3deg) !important;
        z-index: 3;
    }

    /* Video 5 - Bottom left */
    .mosaic-video-5 {
        width: 125px !important;
        aspect-ratio: 1/1 !important;
        left: 8% !important;
        bottom: 18% !important;
        right: auto !important;
        top: auto !important;
        transform: rotate(2deg) !important;
        z-index: 5;
    }

    /* Video 6 - Bottom center-right */
    .mosaic-video-6 {
        width: 100px !important;
        aspect-ratio: 4/5 !important;
        left: 50% !important;
        bottom: 8% !important;
        right: auto !important;
        top: auto !important;
        transform: translateX(-50%) rotate(-2deg) !important;
        z-index: 6;
    }

    /* Video 7 - Bottom right, larger */
    .mosaic-video-7 {
        width: 150px !important;
        aspect-ratio: 16/9 !important;
        right: 2% !important;
        bottom: 12% !important;
        left: auto !important;
        top: auto !important;
        transform: rotate(-1deg) !important;
        z-index: 7;
    }

    .manyways-text {
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin: 0 auto;
        padding-bottom: 0;
    }

    /* Private Section */
    .private-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-top: 80px;
        margin-bottom: 80px;
        min-height: auto;
        padding: 80px 32px;
    }

    .private-dec-left,
    .private-dec-right {
        width: 70px;
        height: 90px;
        opacity: 0.5;
    }

    .private-dec-left {
        left: 0;
    }

    .private-dec-right {
        right: 0;
    }

    .private-title {
        font-size: 38px;
        line-height: 44px;
        white-space: normal;
    }

    .private-text {
        font-size: 18px;
        line-height: 28px;
    }

    /* Final CTA */
    .final-cta {
        width: 100%;
        height: auto;
        padding: 80px 32px;
        margin-top: 0;
        min-height: auto;
    }

    .cta-decorations {
        display: block;
    }

    /* Reposition decorations for mobile */
    .cta-dec-1 {
        left: 10% !important;
        top: 8% !important;
        width: 60px !important;
        height: 50px !important;
    }

    .cta-dec-2 {
        right: 8% !important;
        top: 12% !important;
        left: auto !important;
        width: 55px !important;
        height: 55px !important;
    }

    .cta-dec-3 {
        display: none !important;
    }

    .cta-dec-4 {
        left: 5% !important;
        bottom: 15% !important;
        top: auto !important;
        width: 50px !important;
        height: 50px !important;
    }

    .cta-dec-5 {
        right: 10% !important;
        bottom: 10% !important;
        left: auto !important;
        top: auto !important;
        width: 45px !important;
        height: 45px !important;
    }

    .cta-dec-6 {
        left: 3% !important;
        top: 45% !important;
        width: 35px !important;
        height: 40px !important;
    }

    .cta-dec-7 {
        right: 5% !important;
        top: 40% !important;
        left: auto !important;
        width: 70px !important;
        height: 60px !important;
        transform: rotate(86deg) !important;
    }

    .cta-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    .cta-title {
        font-size: 34px;
        line-height: 42px;
        width: 100%;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .btn-cta {
        font-size: 20px;
        padding: 14px 28px;
        min-width: 180px;
    }

    /* Footer */
    .footer {
        height: auto;
        padding: 60px 32px;
    }

    .footer-logo {
        font-size: 80px;
        letter-spacing: -8px;
        margin-bottom: 48px;
        text-align: center;
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
        margin-left: 0;
        margin-top: 0;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .footer-column ul {
        padding-left: 0;
    }

    .footer-column a {
        font-size: 18px;
        line-height: 36px;
    }

    .footer-copyright {
        margin-top: 48px;
        font-size: 15px;
        white-space: normal;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 80px 24px 60px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .mission-section,
    .styles-section,
    .manyways-section,
    .private-section,
    .final-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .mission-box {
        font-size: 22px;
        padding: 0;
    }

    .steps-title,
    .styles-title,
    .manyways-title,
    .private-title {
        font-size: 34px;
        line-height: 40px;
    }

    /* Extra small mobile: show only 2 videos (1 and 7) */
    .mosaic-video-3 {
        display: none;
    }

    .cta-title {
        font-size: 30px;
        line-height: 38px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .btn-cta {
        font-size: 18px;
        padding: 12px 24px;
    }

    .footer {
        padding: 48px 24px;
    }

    .footer-logo {
        font-size: 64px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets on touch devices */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .menu-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Disable hover effects on touch devices */
    .btn:hover,
    .menu-button:hover {
        transform: none;
    }
    
    /* Better touch feedback */
    .btn:active {
        transform: scale(0.95);
        opacity: 0.9;
    }
    
    .menu-button:active {
        transform: scale(0.95);
        opacity: 0.9;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-buttons {
    animation: fadeIn 0.8s ease-out;
}

/* ============================================
   SPECIAL EFFECTS
   ============================================ */

/* --- Noise Texture Overlay --- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* --- Floating Animation Keyframes --- */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-12px) rotate(var(--rotation, 0deg));
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-8px) rotate(var(--rotation, 0deg));
    }
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    25% {
        transform: translateY(-6px) rotate(calc(var(--rotation, 0deg) + 3deg));
    }
    50% {
        transform: translateY(-12px) rotate(var(--rotation, 0deg));
    }
    75% {
        transform: translateY(-6px) rotate(calc(var(--rotation, 0deg) - 3deg));
    }
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(var(--rotation, 0deg)) scale(1);
    }
    25% {
        transform: rotate(calc(var(--rotation, 0deg) + 2deg)) scale(1.02);
    }
    75% {
        transform: rotate(calc(var(--rotation, 0deg) - 2deg)) scale(0.98);
    }
}

/* --- Animated Hero Decorations --- */
.hero-highlight-1 {
    --rotation: 0deg;
    animation: floatSlow 6s ease-in-out infinite;
}

.hero-misc-1 {
    --rotation: 0deg;
    animation: float 5s ease-in-out infinite 0.5s;
}

.hero-highlight-2 {
    --rotation: 32.665deg;
    animation: floatRotate 7s ease-in-out infinite 1s;
}

.hero-highlight-3 {
    --rotation: 0deg;
    animation: wobble 4s ease-in-out infinite 0.3s;
}

.hero-misc-2 {
    --rotation: 0deg;
    animation: float 5.5s ease-in-out infinite 0.8s;
}

/* --- Animated Style Section Decorations --- */
.style-dec-1 {
    --rotation: 320deg;
    animation: floatRotate 6s ease-in-out infinite;
}

.style-dec-2 {
    --rotation: 25deg;
    animation: float 5s ease-in-out infinite 0.3s;
}

.style-dec-3 {
    --rotation: 60deg;
    animation: wobble 7s ease-in-out infinite 0.6s;
}

.style-dec-4 {
    --rotation: 190deg;
    animation: floatSlow 6.5s ease-in-out infinite 0.9s;
}

.style-dec-5 {
    --rotation: 305deg;
    animation: float 5.5s ease-in-out infinite 1.2s;
}

.style-dec-6 {
    --rotation: 145deg;
    animation: floatRotate 6s ease-in-out infinite 0.4s;
}

.style-dec-7 {
    --rotation: 80deg;
    animation: wobble 5s ease-in-out infinite 0.7s;
}

.style-dec-8 {
    --rotation: 265deg;
    animation: float 6.5s ease-in-out infinite 1s;
}

.style-dec-9 {
    --rotation: 110deg;
    animation: floatSlow 7s ease-in-out infinite 0.2s;
}

/* --- Animated CTA Section Decorations --- */
.cta-dec-1 {
    --rotation: 14.403deg;
    animation: float 5s ease-in-out infinite;
}

.cta-dec-2 {
    --rotation: 24.065deg;
    animation: floatRotate 6s ease-in-out infinite 0.5s;
}

.cta-dec-3 {
    --rotation: 0deg;
    animation: wobble 5.5s ease-in-out infinite 0.3s;
}

.cta-dec-4 {
    --rotation: 0deg;
    animation: floatSlow 7s ease-in-out infinite 0.8s;
}

.cta-dec-5 {
    --rotation: 0deg;
    animation: float 6s ease-in-out infinite 0.2s;
}

.cta-dec-6 {
    --rotation: 0deg;
    animation: floatRotate 5s ease-in-out infinite 0.6s;
}

.cta-dec-7 {
    --rotation: 86.398deg;
    animation: wobble 6.5s ease-in-out infinite 0.4s;
}

/* --- Animated Private Section Decorations --- */
/* These use special transforms for mirroring, so use a custom animation */
@keyframes floatLeftLaurel {
    0%, 100% {
        transform: translateY(-50%) rotate(180deg) scaleY(-1);
    }
    50% {
        transform: translateY(calc(-50% - 8px)) rotate(180deg) scaleY(-1);
    }
}

@keyframes floatRightLaurel {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

.private-dec-left {
    animation: floatLeftLaurel 6s ease-in-out infinite;
}

.private-dec-right {
    animation: floatRightLaurel 6s ease-in-out infinite 0.5s;
}

/* --- Scroll-Triggered Reveal Animations --- */
/* Using opacity-only transitions to avoid breaking transform-based layouts */

.mission-content,
.private-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mission-section.visible .mission-content,
.private-section.visible .private-content {
    opacity: 1;
    transform: translateY(0);
}


/* Workflows section reveals */
.workflows-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflows-section.visible .workflows-title {
    opacity: 1;
    transform: translateY(0);
}

.workflow-card {
    opacity: 0;
    transform: translateY(20px);
}

.workflows-section.visible .workflow-card:nth-child(1) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, box-shadow 0.3s ease; }
.workflows-section.visible .workflow-card:nth-child(2) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, box-shadow 0.3s ease; }
.workflows-section.visible .workflow-card:nth-child(3) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, box-shadow 0.3s ease; }
.workflows-section.visible .workflow-card:nth-child(4) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, box-shadow 0.3s ease; }
.workflows-section.visible .workflow-card:nth-child(5) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, box-shadow 0.3s ease; }
.workflows-section.visible .workflow-card:nth-child(6) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, box-shadow 0.3s ease; }
.workflows-section.visible .workflow-card:nth-child(7) { opacity: 1; transform: translateY(0); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s, box-shadow 0.3s ease; }

/* Steps section - use wrapper approach to avoid breaking absolute positioning */
.steps-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps-section.visible .steps-title {
    opacity: 1;
    transform: translateY(0);
}

/* Steps: fade the title and video separately */
.step-1 .step-title,
.step-1 .step-video,
.step-2 .step-title,
.step-2 .step-video,
.step-3 .step-title,
.step-3 .step-video {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps-section.visible .step-1 .step-title,
.steps-section.visible .step-1 .step-video {
    opacity: 1;
    transition-delay: 0.15s;
}

.steps-section.visible .step-2 .step-title,
.steps-section.visible .step-2 .step-video {
    opacity: 1;
    transition-delay: 0.3s;
}

.steps-section.visible .step-3 .step-title,
.steps-section.visible .step-3 .step-video {
    opacity: 1;
    transition-delay: 0.45s;
}

/* Styles section - fade only, preserve transform positioning */
.styles-title {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.styles-section.visible .styles-title {
    opacity: 1;
}

.styles-video-container {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.2s;
}

.styles-section.visible .styles-video-container {
    opacity: 1;
}

.styles-description {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.4s;
}

.styles-section.visible .styles-description {
    opacity: 1;
}

/* CTA section - fade only, preserve transform positioning */
.cta-content {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta.visible .cta-content {
    opacity: 1;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    body::after {
        display: none;
    }

    /* Disable floating animations */
    .hero-highlight-1,
    .hero-misc-1,
    .hero-highlight-2,
    .hero-highlight-3,
    .hero-misc-2,
    .style-dec-1,
    .style-dec-2,
    .style-dec-3,
    .style-dec-4,
    .style-dec-5,
    .style-dec-6,
    .style-dec-7,
    .style-dec-8,
    .style-dec-9,
    .cta-dec-1,
    .cta-dec-2,
    .cta-dec-3,
    .cta-dec-4,
    .cta-dec-5,
    .cta-dec-6,
    .cta-dec-7,
    .private-dec-left,
    .private-dec-right {
        animation: none !important;
    }

    /* Disable reveal transitions - show everything immediately */
    .mission-content,
    .private-content,
    .steps-title,
    .step-1 .step-title,
    .step-1 .step-video,
    .step-2 .step-title,
    .step-2 .step-video,
    .step-3 .step-title,
    .step-3 .step-video,
    .styles-title,
    .styles-video-container,
    .styles-description,
    .cta-content,
    .workflows-title,
    .workflow-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

