@font-face {
    font-family: 'SF Pro Display';
    src: url('assets/sf-pro-display/FontsFree-Net-SFProDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display Medium';
    src: url('assets/sf-pro-display/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display Regular';
    src: url('assets/sf-pro-display/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow-x: hidden;
    background: rgba(255, 255, 255, 0.8);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    ;
    z-index: 2;
    pointer-events: none;
}

.container-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 4;
    justify-content: flex-start;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.container-2 {
    width: 100%;
    height: 350vh;
    position: relative;
    padding: 0;
    overflow: visible;
    background: #e4e4e4;
    margin-top: 10px;
}

.section-2-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.container-2a {
    width: 100%;
    height: 300vh;
    position: relative;
    padding: 0;
    overflow: visible;
    background: #e4e4e4;
    margin-top: 10px;
}

.section-2a-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.section-2a-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.section-2a-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.section-2a-gradient-pink {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.9), rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0));
    top: 30%;
    right: 10%;
    animation: section2aMovePink 8s ease-in-out infinite;
    z-index: 1;
}

.section-2a-gradient-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.9), rgba(173, 216, 230, 0.4), rgba(173, 216, 230, 0));
    bottom: 20%;
    left: 8%;
    animation: section2aMoveBlue 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes section2aMovePink {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, 100px) scale(1.1);
    }

    66% {
        transform: translate(90px, -90px) scale(0.9);
    }
}

@keyframes section2aMoveBlue {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(130px, -100px) scale(1.15);
    }

    80% {
        transform: translate(-100px, 110px) scale(0.85);
    }
}

.section-2a-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.section-2a-text-wrapper {
    flex: 1;
    text-align: left;
}

.section-2a-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 500;
    color: #666666;
    margin: 0 0 0 0;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.section-2a-title.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section-2a-bold {
    font-weight: 600;
    color: #000000;
}

.section-2a-subtitle {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 500;
    color: #666666;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.section-2a-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-2a-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translate3d(50px, 0, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    perspective: 1000px;
    contain: layout style paint;
    z-index: 3;
    pointer-events: none;
    margin-top: 250px;
    /* Always keep on screen - never hide with display */
}

.section-2a-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-2a-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-2a-image.loaded {
    opacity: 1;
}

.container-2b {
    width: 100%;
    height: 300vh;
    position: relative;
    padding: 0;
    overflow: visible;
    background: #e4e4e4;
    margin-top: 10px;
}

.section-2b-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.section-2b-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.section-2b-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.section-2b-gradient-pink {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.9), rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0));
    bottom: 15%;
    left: 12%;
    animation: section2bMovePink 8s ease-in-out infinite;
    z-index: 1;
}

.section-2b-gradient-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.9), rgba(173, 216, 230, 0.4), rgba(173, 216, 230, 0));
    top: 25%;
    right: 8%;
    animation: section2bMoveBlue 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes section2bMovePink {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(110px, -90px) scale(1.1);
    }

    66% {
        transform: translate(-95px, 95px) scale(0.9);
    }
}

@keyframes section2bMoveBlue {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(-125px, 95px) scale(1.15);
    }

    80% {
        transform: translate(105px, -105px) scale(0.85);
    }
}

.section-2b-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.section-2b-text-wrapper {
    flex: 1;
    text-align: right;
}

.section-2b-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 500;
    color: #666666;
    margin: 0 0 0 0;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.section-2b-title.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section-2b-bold {
    font-weight: 600;
    color: #000000;
}

.section-2b-subtitle {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 500;
    color: #666666;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.section-2b-subtitle.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section-2b-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    perspective: 1000px;
    contain: layout style paint;
    z-index: 3;
    pointer-events: none;
    margin-top: 250px;
    /* Always keep on screen - never hide with display */
}

.section-2b-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-2b-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-2b-image.loaded {
    opacity: 1;
}

.container-2c {
    width: 100%;
    height: 300vh;
    position: relative;
    padding: 0;
    overflow: visible;
    background: #e4e4e4;
    margin-top: 10px;
}

.section-2c-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.section-2c-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.section-2c-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.section-2c-gradient-pink {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.9), rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0));
    top: 15%;
    left: 15%;
    animation: section2cMovePink 8s ease-in-out infinite;
    z-index: 1;
}

.section-2c-gradient-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.9), rgba(173, 216, 230, 0.4), rgba(173, 216, 230, 0));
    bottom: 25%;
    right: 12%;
    animation: section2cMoveBlue 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes section2cMovePink {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 110px) scale(1.1);
    }

    66% {
        transform: translate(-110px, -95px) scale(0.9);
    }
}

@keyframes section2cMoveBlue {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(115px, 100px) scale(1.15);
    }

    80% {
        transform: translate(-120px, -110px) scale(0.85);
    }
}

.section-2c-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.section-2c-text-wrapper {
    flex: 1;
    text-align: left;
}

.section-2c-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 500;
    color: #666666;
    margin: 0 0 0 0;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.section-2c-title.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section-2c-bold {
    font-weight: 600;
    color: #000000;
}

.section-2c-subtitle {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 4vw, 64px);
    font-weight: 500;
    color: #666666;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.section-2c-subtitle.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section-2c-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translate3d(50px, 0, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    perspective: 1000px;
    contain: layout style paint;
    z-index: 3;
    pointer-events: none;
    margin-top: 250px;
    /* Always keep on screen - never hide with display */
}

.section-2c-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-2c-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-2c-image.loaded {
    opacity: 1;
}

.container-3 {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e4e4e4;
    margin-top: 10px;
}

.container-3 {
    position: relative;
}

.section-3-social-icons {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 3;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 50%;
}

.social-icon:hover {
    color: #666666;
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.05);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.section-3-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 40px;
}

.section-3-footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-3-footer-text {
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    max-width: 700px;
}

.section-3-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.link-button {
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.link-button::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #666666;
    transition: width 0.3s ease;
}

.link-button:hover {
    color: #000000;
}

.link-button:hover::after {
    width: 100%;
}

.section-3-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #000000 0%, #000000 40%, rgba(255, 105, 180, 0.8) 50%, rgba(135, 206, 250, 0.8) 60%, #000000 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 10s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.4), 0 0 40px rgba(135, 206, 250, 0.3);
}

.section-2-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.section-2-sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.section-2-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.section-2-gradient-pink {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.9), rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0));
    top: 10%;
    left: 5%;
    animation: section2MovePink 8s ease-in-out infinite;
    z-index: 1;
}

.section-2-gradient-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.9), rgba(173, 216, 230, 0.4), rgba(173, 216, 230, 0));
    bottom: 10%;
    right: 5%;
    animation: section2MoveBlue 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes section2MovePink {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -80px) scale(1.1);
    }

    66% {
        transform: translate(-80px, 100px) scale(0.9);
    }
}

@keyframes section2MoveBlue {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(-120px, 90px) scale(1.15);
    }

    80% {
        transform: translate(90px, -100px) scale(0.85);
    }
}

.section-2-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
}

.section-2-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #666666;
    line-height: 1.3;
    margin: 0;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    position: relative;
}

.section-2-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes textShine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.section-2-text-1 {
    text-align: left;
    margin-bottom: 60px;
}

.section-2-image-wrapper {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate3d(-50%, -50%, 0) scale(0.3);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    will-change: opacity, transform;
    backface-visibility: hidden;
    perspective: 1000px;
    contain: layout style paint;
}

.section-2-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section-2-image.loaded {
    opacity: 1;
}

.section-2-text-2 {
    text-align: right;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.section-2-text .highlight {
    color: #000000;
    font-weight: 600;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}


.logo {
    height: 135px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    transform: scale(1) rotate(0deg);
}


.brand-name {
    font-size: 75px;
    font-weight: bold;
    color: #000000;
    margin: 0;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    display: inline-block;
}


.tagline {
    font-size: 30px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 100px;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.tagline:hover {
    color: #555555;
    transform: translateY(-2px);
}

.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0px auto 40px auto;
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    width: 100%;
}

.scroll-down-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down-link:hover {
    transform: translateY(-3px);
}

.scroll-down-link:hover .scroll-down-text {
    color: #000000;
    opacity: 1;
}

.scroll-down-link:hover .arrow {
    opacity: 1;
}

.scroll-down-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollTextPulse 2s ease-in-out infinite;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.scroll-down-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-down-arrows .arrow {
    font-size: 24px;
    color: #666666;
    line-height: 1;
    animation: scrollArrowBounce 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.scroll-down-arrows .arrow-1 {
    animation-delay: 0s;
}

.scroll-down-arrows .arrow-2 {
    animation-delay: 0.2s;
    opacity: 0.5;
}

.scroll-down-arrows .arrow-3 {
    animation-delay: 0.4s;
    opacity: 0.3;
}

@keyframes scrollTextPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes scrollArrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

.waitlist-form {
    display: flex;
    gap: 10px;
    margin: 0;
    width: 100%;
    max-width: 580px;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    justify-content: center;
}

.waitlist-form:hover {
    transform: translateY(-2px);
}

.waitlist-form.hidden {
    display: none;
}

.success-message {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 580px;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 5;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.success-message.show {
    display: flex;
    animation: successFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    animation: successIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.success-box {
    background: transparent;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 0 24px;
    max-width: 500px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successTextSlide 0.6s ease-out 0.5s both;
    box-sizing: border-box;
}

.success-text {
    font-size: 22px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    text-align: center;
}

@keyframes successFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successIconPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}


@keyframes successTextSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.waitlist-form input[type="email"] {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 12px;
    font-size: 20px;
    background: transparent;
    color: #000000;
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    height: 48px;
}

.waitlist-form input[type="email"].error {
    border-color: #ef4444;
    background: transparent;
    animation: shake 0.5s ease-in-out;
}

.waitlist-form input[type="email"].error:focus {
    border-color: #ef4444;
    background: transparent;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    background: transparent;
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-form input[type="email"]:active {
    transition: all 0.05s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-form input[type="email"]::placeholder {
    color: #999999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(0);
}

.waitlist-form input[type="email"]:focus::placeholder {
    opacity: 0.4;
    transform: translateX(4px);
}

.error-message {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    color: #ef4444;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #fee2e2;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    white-space: nowrap;
}

.error-message::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #fee2e2;
    border-top: 1px solid #fee2e2;
    transform: rotate(45deg);
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: errorSlideIn 0.3s ease-out;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist-form button {
    padding: 12px 32px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'SF Pro Display Regular', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transform: translateY(0) scale(1);
    position: relative;
    overflow: hidden;
    width: 200px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.waitlist-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.waitlist-form button:hover {
    background: #1a1a1a;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.waitlist-form button:hover::before {
    width: 300px;
    height: 300px;
}

.waitlist-form button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-form button.submitting {
    pointer-events: none;
    opacity: 0.7;
    transform: scale(0.95);
}

.waitlist-form button.success {
    background: #22c55e;
    animation: buttonSuccess 0.6s ease-out;
}

.pets-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    animation: fadeIn 1.2s ease-out 0.6s both;
    transition: transform 0.5s ease-out;
}

.pets-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

.pets-container::before,
.pets-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
}

.pets-container::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.25), rgba(255, 182, 193, 0));
    top: 10%;
    left: 10%;
    animation: moveCircle1 12s ease-in-out infinite;
}

.pets-container::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(173, 216, 230, 0.15), rgba(173, 216, 230, 0));
    bottom: 15%;
    right: 15%;
    animation: moveCircle2 14s ease-in-out infinite;
}

@keyframes moveCircle1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(200px, -150px) scale(1.1);
    }

    50% {
        transform: translate(-180px, 200px) scale(0.9);
    }

    75% {
        transform: translate(250px, 120px) scale(1.05);
    }
}

@keyframes moveCircle2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-220px, 180px) scale(0.95);
    }

    50% {
        transform: translate(190px, -200px) scale(1.1);
    }

    75% {
        transform: translate(-150px, -180px) scale(0.9);
    }
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.gradient-circle.circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.25), rgba(255, 192, 203, 0));
    top: 20%;
    right: 20%;
    animation: moveCircle3 13s ease-in-out infinite;
}

.gradient-circle.circle-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(135, 206, 250, 0.18), rgba(135, 206, 250, 0));
    top: 50%;
    left: 5%;
    animation: moveCircle4 15s ease-in-out infinite;
}

.gradient-circle.circle-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.25), rgba(255, 182, 193, 0));
    bottom: 25%;
    left: 25%;
    animation: moveCircle5 12.5s ease-in-out infinite;
}

.gradient-circle.circle-4 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(176, 224, 230, 0.12), rgba(176, 224, 230, 0));
    top: 5%;
    left: 50%;
    animation: moveCircle6 16s ease-in-out infinite;
}


@keyframes moveCircle3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(180px, -200px) scale(1.15);
    }

    66% {
        transform: translate(-220px, 250px) scale(0.85);
    }
}

@keyframes moveCircle4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-250px, -180px) scale(0.9);
    }

    50% {
        transform: translate(200px, 220px) scale(1.2);
    }

    75% {
        transform: translate(-170px, 150px) scale(0.95);
    }
}

@keyframes moveCircle5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    30% {
        transform: translate(190px, -220px) scale(1.1);
    }

    60% {
        transform: translate(-240px, 180px) scale(0.88);
    }
}

@keyframes moveCircle6 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    20% {
        transform: translate(-200px, 220px) scale(1.05);
    }

    40% {
        transform: translate(230px, -180px) scale(0.92);
    }

    60% {
        transform: translate(-190px, -210px) scale(1.08);
    }

    80% {
        transform: translate(210px, 160px) scale(0.98);
    }
}

@media (max-width: 900px) {
    .waitlist-form {
        max-width: 100%;
    }

    .waitlist-form button {
        width: auto;
        min-width: 180px;
        flex-shrink: 0;
    }

    .input-wrapper {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container-1 {
        max-width: 100%;
        padding-top: 50px;
    }

    header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .logo {
        height: 75px;
    }

    .brand-name {
        font-size: 42px;
    }

    .tagline {
        font-size: 18px;
        font-weight: 500;
        color: #666666;
        margin-bottom: 30px;
        line-height: 1;
    }

    .scroll-down-indicator {
        margin: 40px auto 20px auto;
        gap: 12px;
        width: 100%;
    }

    .scroll-down-text {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .scroll-down-arrows {
        gap: 6px;
    }

    .scroll-down-arrows .arrow {
        font-size: 20px;
    }

    .waitlist-form {
        flex-direction: column;
        margin: 0 auto 30px auto;
        width: 100%;
        align-items: stretch;
        justify-content: center;
    }

    .input-wrapper {
        width: 100%;
    }

    .waitlist-form input[type="email"] {
        width: 100%;
        font-size: 18px;
        padding: 10px 18px;
        height: 48px;
        box-sizing: border-box;
    }

    .waitlist-form button {
        width: 100%;
        font-size: 18px;
        padding: 12px 28px;
        height: 48px;
        box-sizing: border-box;
    }

    .success-message {
        gap: 15px;
        max-width: 100%;
    }

    .success-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .success-box {
        padding: 14px 20px;
        border-radius: 12px;
        min-height: 48px;
        white-space: nowrap;
    }

    .success-text {
        font-size: 16px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .container-1 {
        padding-top: 70px;
        justify-content: flex-start;
    }

    header {
        margin-bottom: 12px;
        gap: 4px;
    }

    .tagline {
        margin-bottom: 0;
    }

    .brand-name {
        font-size: 40px;
    }

    .tagline {
        font-size: 20px;
        font-weight: 500;
        color: #666666;
        margin-top: 6px;
        margin-bottom: 100px;
        line-height: 1;
    }

    .logo {
        height: 65px;
    }

    .scroll-down-indicator {
        margin: 50px auto 30px auto;
        gap: 10px;
        width: 100%;
    }

    .scroll-down-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .scroll-down-arrows {
        gap: 5px;
    }

    .scroll-down-arrows .arrow {
        font-size: 18px;
    }

    .waitlist-form {
        margin: 0;
        justify-content: center;
    }

    .success-message {
        gap: 12px;
        max-width: 100%;
        margin: -10px auto 15px;
    }

    .success-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .success-box {
        padding: 12px 16px;
        border-radius: 12px;
        min-height: 48px;
        white-space: nowrap;
    }

    .success-text {
        font-size: 14px;
        white-space: nowrap;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes inputPulse {
    0% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    50% {
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
}

@keyframes buttonSuccess {
    0% {}

    50% {
        transform: scale(1.1);
    }

    100% {}
}

@keyframes buttonPress {
    0% {
        transform: translateY(-3px) scale(1.02);
    }

    50% {
        transform: translateY(0) scale(0.95);
    }

    100% {
        transform: translateY(-1px) scale(0.98);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .section-2-content {
        padding: 0 20px;
    }

    .section-2-text {
        font-size: 36px;
    }

    .section-2-text-1 {
        margin-bottom: 40px;
    }

    .section-2-image-wrapper {
        margin: 50px 0;
    }

    .section-2-image {
        max-width: 300px;
    }

    .section-2-gradient-pink {
        width: 300px;
        height: 300px;
    }

    .section-2-gradient-blue {
        width: 350px;
        height: 350px;
    }

    .container-2 {
        height: 250vh;
    }

    /* Shorten scroll distance for the secondary sticky sections on mobile */
    .container-2a,
    .container-2b,
    .container-2c {
        height: 220vh;
    }

    /* Disable scroll animations on mobile - make elements visible immediately */
    .section-2a-title,
    .section-2a-subtitle {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2a-image-wrapper {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2b-title,
    .section-2b-subtitle {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2b-image-wrapper {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2c-title,
    .section-2c-subtitle {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2c-image-wrapper {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }

    /* Swap image and text order in section 2b on mobile - text first, then image */
    .section-2b-content {
        flex-direction: column;
    }

    .section-2b-text-wrapper {
        order: 1;
    }

    .section-2b-image-wrapper {
        order: 2;
    }
}

@media (max-width: 480px) {
    .section-2-content {
        padding: 0 15px;
    }

    .section-2-text {
        font-size: 24px;
    }

    .section-2-text-1 {
        margin-bottom: 30px;
    }

    .section-2-image-wrapper {
        margin: 30px 0;
    }

    .section-2-image {
        max-width: 350px;
    }

    .section-2-gradient-pink {
        width: 250px;
        height: 250px;
    }

    .section-2-gradient-blue {
        width: 280px;
        height: 280px;
    }

    .section-3-text {
        font-size: 48px;
    }

    .section-3-content {
        gap: 30px;
    }

    .section-2a-title {
        font-size: clamp(26px, 8vw, 48px);
        white-space: nowrap;
    }

    .section-2a-subtitle {
        font-size: clamp(26px, 8vw, 48px);
        white-space: nowrap;
    }

    .section-2a-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .section-2a-text-wrapper {
        text-align: center;
    }

    .section-2a-image-wrapper {
        transform: translate3d(0, 0, 0) !important;
        margin-top: 0;
        opacity: 1 !important;
    }

    .section-2a-image-wrapper.visible {
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2a-image {
        max-width: 400px;
    }

    .section-2b-text {
        font-size: 48px;
    }

    .section-2c-title {
        font-size: clamp(26px, 8vw, 48px);
        white-space: nowrap;
    }

    .section-2c-subtitle {
        font-size: clamp(26px, 8vw, 48px);
        white-space: nowrap;
    }

    .section-2c-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .section-2c-text-wrapper {
        text-align: center;
    }

    .section-2c-image-wrapper {
        transform: translate3d(0, 0, 0) !important;
        margin-top: 0;
        opacity: 1 !important;
    }

    .section-2c-image-wrapper.visible {
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2c-image {
        max-width: 400px;
    }

    .section-3-social-icons {
        top: 30px;
        right: 30px;
        gap: 15px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .section-3-footer {
        bottom: 30px;
        padding: 0 20px;
        gap: 15px;
    }

    .section-3-footer-text {
        font-size: 11px;
        max-width: 600px;
    }

    .section-3-links {
        gap: 20px;
    }

    .link-button {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-3-text {
        font-size: 32px;
    }

    .section-3-content {
        gap: 25px;
    }

    .section-2a-title {
        font-size: clamp(22px, 6vw, 36px);
        white-space: nowrap;
    }

    .section-2a-subtitle {
        font-size: clamp(22px, 6vw, 36px);
        white-space: nowrap;
    }

    .section-2a-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .section-2a-text-wrapper {
        text-align: center;
    }

    .section-2a-image-wrapper {
        transform: translate3d(0, 0, 0) !important;
        margin-top: 0;
        opacity: 1 !important;
    }

    .section-2a-image-wrapper.visible {
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2a-image {
        max-width: 300px;
    }

    .section-2b-title {
        font-size: clamp(22px, 6vw, 36px);
        white-space: nowrap;
    }

    .section-2b-subtitle {
        font-size: clamp(22px, 6vw, 36px);
        white-space: nowrap;
    }

    .section-2b-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .section-2b-text-wrapper {
        text-align: center;
        order: 1;
    }

    .section-2b-image-wrapper {
        transform: translate3d(0, 0, 0) !important;
        margin-top: 0;
        opacity: 1 !important;
        order: 2;
    }

    .section-2b-image-wrapper.visible {
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2b-image {
        max-width: 300px;
    }

    .section-2c-title {
        font-size: clamp(22px, 6vw, 36px);
        white-space: nowrap;
    }

    .section-2c-subtitle {
        font-size: clamp(22px, 6vw, 36px);
        white-space: nowrap;
    }

    .section-2c-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .section-2c-text-wrapper {
        text-align: center;
    }

    .section-2c-image-wrapper {
        transform: translate3d(0, 0, 0) !important;
        margin-top: 0;
        opacity: 1 !important;
    }

    .section-2c-image-wrapper.visible {
        transform: translate3d(0, 0, 0) !important;
    }

    .section-2c-image {
        max-width: 300px;
    }

    .section-3-social-icons {
        top: 20px;
        right: 20px;
        gap: 12px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .section-3-footer {
        bottom: 20px;
        padding: 0 15px;
        gap: 12px;
    }

    .section-3-footer-text {
        font-size: 10px;
        max-width: 100%;
        line-height: 1.5;
    }

    .section-3-links {
        flex-direction: row;
        gap: 20px;
    }

    .link-button {
        font-size: 11px;
    }
}