/* --- HERO SLIDER BASE --- */
.starter-hero-slider { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
}

/* Common Slide Styling */
.starter-hero-slide { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    z-index: 1; 
    transition: opacity 1000ms ease-in-out; 
}
.starter-hero-slide.active { 
    opacity: 1; 
    z-index: 2; 
}

/* Background Image */
.starter-hero-bg { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    z-index: 0;
}
.starter-hero-bg img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: scale(1); 
    transition: transform 10000ms ease-out; 
}
.starter-hero-slide.active .starter-hero-bg img { 
    transform: scale(1.1); 
}

/* Common Overlay - Initial state transparent to let Elementor set color */
.starter-hero-overlay { 
    position: absolute; 
    inset: 0; 
    z-index: 1;
}

/* Common Text Animations */
.starter-hero-subtitle { 
    display: inline-block; 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
    margin-bottom: 20px; 
    opacity: 0; 
}
.starter-hero-title { 
    font-size: 40px; 
    line-height: 1.1; 
    font-weight: 800; 
    margin: 0 0 20px; 
    opacity: 0; 
}
@media (min-width: 768px) { .starter-hero-title { font-size: 48px; } }

.starter-hero-desc { 
    font-size: 16px; 
    line-height: 1.6; 
    margin: 0 0 32px; 
    opacity: 0; 
    max-width: 500px; 
}
.starter-hero-btn-wrap { opacity: 0; }

/* Staggered Animations */
.starter-hero-slide.active .starter-hero-subtitle { animation: starter-fadeInUp 0.6s ease-out 0.2s forwards; }
.starter-hero-slide.active .starter-hero-title { animation: starter-fadeInUp 0.6s ease-out 0.4s forwards; }
.starter-hero-slide.active .starter-hero-desc { animation: starter-fadeInUp 0.6s ease-out 0.6s forwards; }
.starter-hero-slide.active .starter-hero-btn-wrap { animation: starter-fadeInUp 0.6s ease-out 0.8s forwards; }

/* Common Buttons */
.starter-hero-btn { 
    display: inline-flex; 
    align-items: center; 
    padding: 14px 32px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 15px; 
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    line-height: 1.2; 
}
.starter-hero-btn:hover { 
    transform: translateY(-2px); 
}

/* Common Navigation */
.starter-hero-arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 10; 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.15); 
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(255,255,255,0.2); 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    cursor: pointer; 
    transition: all 0.3s; 
}
.starter-hero-slider:hover .starter-hero-arrow { opacity: 1; }
.starter-hero-arrow:hover { 
    background: white; 
    color: #4f46e5; 
    transform: translateY(-50%) scale(1.1); 
}
.starter-hero-prev { left: 24px; }
.starter-hero-next { right: 24px; }

.starter-hero-dots { 
    position: absolute; 
    bottom: 32px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
    display: flex; 
    gap: 10px; 
}
.starter-hero-dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.4); 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    transition: all 0.3s; 
}
.starter-hero-dot.active { 
    background: white; 
    width: 32px; 
    border-radius: 12px; 
}

/* --- STYLE: CLASSIC --- */
.starter-hero-content-container { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    align-items: center; 
    padding: 0 48px; 
    max-width: 1200px; 
    margin: 0 auto; 
    width: 100%; 
    box-sizing: border-box; 
    z-index: 20; 
    pointer-events: none; 
}
.starter-hero-content { 
    max-width: 650px; 
    pointer-events: auto; 
}

/* --- STYLE: SPLIT --- */
.starter-hero-slider--split { 
    background: #fff; 
    display: flex; 
    flex-direction: column; 
}
@media (min-width: 768px) { 
    .starter-hero-slider--split { 
        flex-direction: row; 
    } 
}
.starter-hero-split-container { 
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    height: 100%; 
}
@media (min-width: 768px) { 
    .starter-hero-split-container { flex-direction: row; } 
}
.starter-hero-split-content { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    min-height: 400px;
    display: flex; 
    align-items: center; 
    background: #fff; 
    z-index: 20; 
    box-sizing: border-box; 
    overflow: hidden;
}
@media (min-width: 768px) { 
    .starter-hero-split-content { width: 50%; min-height: auto; } 
}
.starter-hero-split-text-slide { 
    position: absolute; 
    inset: 0; 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    opacity: 0; 
    transform: translateX(-30px); 
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1); 
    pointer-events: none; 
    background-color: #fff; 
    z-index: 1;
}
@media (min-width: 768px) { .starter-hero-split-text-slide { padding: 60px; } }
.starter-hero-split-text-slide.active { 
    opacity: 1; 
    transform: translateX(0); 
    pointer-events: auto; 
    z-index: 10; 
}

.starter-hero-split-image { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
}
@media (min-width: 768px) { .starter-hero-split-image { width: 50%; } }
.starter-hero-split-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.1);
    mix-blend-mode: multiply;
}

/* Split Nav */
.starter-hero-split-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 30;
    display: flex;
    gap: 12px;
}
.starter-hero-arrow-split {
    position: static;
    transform: none;
    opacity: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.starter-hero-arrow-split:hover {
    background: white;
    color: #4f46e5;
    transform: scale(1.1);
}

/* --- STYLE: CREATIVE (Glass Card) --- */
.starter-hero-creative-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 5;
}
.starter-hero-creative-card {
    max-width: 700px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}
.starter-hero-slide.active .starter-hero-creative-card {
    transform: translateY(0);
    opacity: 1;
}
.starter-hero-creative-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}
.starter-hero-slider--creative .starter-hero-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- STYLE: OFFSET --- */
.starter-hero-slider--offset {
    background-color: #f3f4f6;
    padding: 40px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 700px; 
}
.starter-hero-offset-container {
    position: relative;
    width: 100%;
    max-width: 1150px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.starter-hero-offset-image-area {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1;
}
@media (min-width: 992px) {
    .starter-hero-offset-image-area { width: 65%; }
}
.starter-hero-offset-image-area .starter-hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}
.starter-hero-offset-image-area .starter-hero-slide.active { opacity: 1; }
.starter-hero-offset-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-out;
    transform: scale(1);
}
.starter-hero-offset-image-area .starter-hero-slide.active img { transform: scale(1.1); }

.starter-hero-offset-content-area {
    position: relative;
    z-index: 30;
    width: 100%;
    pointer-events: none; 
}
@media (min-width: 992px) { .starter-hero-offset-content-area { width: 45%; } }

.starter-hero-offset-stage {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}
.starter-hero-offset-card {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-30px);
    width: 100%;
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .starter-hero-offset-card {
        padding: 32px;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 90%;
    }
}
.starter-hero-offset-card.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
    z-index: 20;
}
.starter-hero-offset-card-inner { text-align: left; }
.starter-hero-offset-card .starter-hero-subtitle {
    background-color: #eef2ff;
    color: #4f46e5;
    border: none;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
}
.starter-hero-offset-card .starter-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(16px);
}
.starter-hero-offset-card .starter-hero-desc {
    font-size: 16px;
    line-height: 1.625;
    color: #6b7280;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
}
.starter-hero-offset-card .starter-hero-btn-wrap {
    opacity: 0;
    transform: translateY(16px);
}
/* Staggered Card Animations */
.starter-hero-offset-card.active .starter-hero-subtitle { animation: starter-fadeInUp 0.5s ease-out 0.2s forwards; }
.starter-hero-offset-card.active .starter-hero-title { animation: starter-fadeInUp 0.5s ease-out 0.3s forwards; }
.starter-hero-offset-card.active .starter-hero-desc { animation: starter-fadeInUp 0.5s ease-out 0.4s forwards; }
.starter-hero-offset-card.active .starter-hero-btn-wrap { animation: starter-fadeInUp 0.5s ease-out 0.5s forwards; }

.starter-hero-slider--offset .starter-hero-dots { bottom: 40px; }
.starter-hero-slider--offset .starter-hero-dot { background: #cbd5e1; width: 12px; height: 12px; }
.starter-hero-slider--offset .starter-hero-dot.active { background: #4f46e5; width: 40px; }

/* --- STYLE: CINEMATIC --- */
.starter-hero-slider--cinematic { background: #000; }
.starter-hero-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
    z-index: 2;
}
.starter-hero-cinematic-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 40px 80px 40px; 
    z-index: 20;
    box-sizing: border-box;
    max-width: 900px;
}
@media (min-width: 768px) {
    .starter-hero-cinematic-content { padding: 0 60px 100px 60px; }
}
.starter-hero-cinematic-content .starter-hero-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
}
@media (min-width: 768px) {
    .starter-hero-cinematic-content .starter-hero-title { font-size: 64px; margin-bottom: 24px; }
}
.starter-hero-cinematic-content .starter-hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 32px;
    opacity: 0;
}
.starter-hero-subtitle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}
.starter-hero-line {
    width: 40px;
    height: 2px;
    background-color: #e50914; 
    margin-right: 16px;
    display: inline-block;
}
.starter-hero-cinematic-content .starter-hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: transparent;
    padding: 0;
    border: none;
    margin: 0;
    opacity: 1; 
}

/* Staggered Cinematic Animations */
.starter-hero-slide.active .starter-hero-subtitle-wrap { animation: starter-fadeInUp 0.8s ease-out 0.2s forwards; }
.starter-hero-slide.active .starter-hero-cinematic-content .starter-hero-title { animation: starter-fadeInUp 0.8s ease-out 0.4s forwards; }
.starter-hero-slide.active .starter-hero-cinematic-content .starter-hero-desc { animation: starter-fadeInUp 0.8s ease-out 0.6s forwards; }
.starter-hero-slide.active .starter-hero-cinematic-content .starter-hero-btn-wrap { animation: starter-fadeInUp 0.8s ease-out 0.8s forwards; }

/* Progress Bar */
.starter-hero-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    z-index: 20;
}
.starter-hero-progress-bar {
    height: 100%;
    background: #e50914;
    width: 0%;
    animation-name: progressLoad;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Navigation */
.starter-hero-cinematic-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 16px;
    z-index: 20;
}
.starter-hero-arrow-simple {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.starter-hero-arrow-simple:hover {
    background: white;
    color: black;
    border-color: white;
}

/* --- STYLE: MORPH HOVER --- */
.starter-hero-slider--morph {
    background-color: #111827;
    display: flex;
    flex-direction: column;
    height: 600px; /* Default height */
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}
@media (min-width: 992px) {
    .starter-hero-slider--morph { flex-direction: row; }
}

/* 1. Visuals Area */
.starter-hero-morph-visuals {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
@media (min-width: 992px) {
    .starter-hero-morph-visuals { width: 60%; height: 100%; }
}

.starter-hero-morph-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    /* Clip Path Animation State: Hidden (Collapsed) */
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 0;
}

.starter-hero-morph-image-wrap.active {
    z-index: 10;
    /* Clip Path Animation State: Visible (Expanded) */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
}

.starter-hero-morph-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 10s ease-out;
}

.starter-hero-morph-image-wrap.active img {
    transform: scale(1.1);
}

.starter-hero-morph-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2); 
    z-index: 1;
}

/* Base/Fallback Image (Optional: ensures no gap during transition) */
.starter-hero-morph-base {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: -1;
    filter: blur(10px);
}

/* 2. Navigation Area */
.starter-hero-morph-nav {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #111827;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    z-index: 20;
}
@media (min-width: 992px) {
    .starter-hero-morph-nav { width: 40%; height: 100%; padding: 50px; }
}

.starter-hero-morph-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* Gap handled by margin/padding for cleaner hover areas */
}

.starter-hero-morph-item {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.starter-hero-morph-item:last-child { border-bottom: none; }

.starter-hero-morph-item:hover,
.starter-hero-morph-item.active {
    opacity: 1;
}

.starter-hero-morph-item.active {
    transform: translateX(10px);
}

/* Item Header */
.starter-hero-morph-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.starter-hero-morph-index {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-right: 12px;
    transition: color 0.3s;
}
.starter-hero-morph-item.active .starter-hero-morph-index {
    color: #818cf8; /* Indigo */
}

.starter-hero-morph-line {
    height: 1px;
    width: 0px;
    background-color: #6366f1;
    transition: width 0.4s ease;
}
.starter-hero-morph-item.active .starter-hero-morph-line {
    width: 40px;
}

.starter-hero-morph-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.1;
}
@media (min-width: 992px) {
    .starter-hero-morph-title { font-size: 32px; }
}

/* Expandable Content */
.starter-hero-morph-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
    opacity: 0;
}

.starter-hero-morph-item.active .starter-hero-morph-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.starter-hero-morph-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
}

.starter-hero-morph-btn {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #818cf8;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s;
}
.starter-hero-morph-btn:hover {
    color: white;
}
.starter-hero-morph-btn i {
    margin-left: 8px;
    font-size: 10px;
}

/* --- STYLE: PARALLAX HOVER --- */
.starter-hero-slider--parallax {
    background-color: #0f172a;
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    perspective: 1000px;
}

.starter-hero-parallax-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.starter-hero-parallax-layer.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto; /* Allow clicking content */
}

/* Layer 1: Background Text (Deepest) */
.starter-hero-parallax-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Base Center */
    /* JS will update transform for parallax */
    font-size: 15vw;
    font-weight: 900;
    line-height: 0.8;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease, transform 0.1s linear; /* Smooth fade, fast move */
}
.starter-hero-parallax-layer.active .starter-hero-parallax-bg-text {
    opacity: 1;
}

/* Layer 2: Main Image (Object) */
.starter-hero-parallax-img-wrap {
    position: relative;
    z-index: 5;
    width: 50%;
    aspect-ratio: 4/3;
    transition: transform 0.1s linear, opacity 1s ease;
    opacity: 0;
    transform: scale(0.9);
}
.starter-hero-parallax-layer.active .starter-hero-parallax-img-wrap {
    opacity: 1;
    transform: scale(1);
    animation: starterFloat 6s ease-in-out infinite;
}

@keyframes starterFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.starter-hero-parallax-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

/* Layer 3: Foreground Content */
.starter-hero-parallax-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 500px;
    z-index: 20;
    transition: transform 0.1s linear;
}

@media (max-width: 768px) {
    .starter-hero-parallax-content { bottom: 40px; left: 20px; right: 20px; }
    .starter-hero-parallax-bg-text { font-size: 20vw; }
    .starter-hero-parallax-img-wrap { width: 85%; }
}

.starter-hero-parallax-subtitle {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(99, 102, 241, 0.5);
    background: rgba(49, 46, 129, 0.4);
    backdrop-filter: blur(8px);
    color: #a5b4fc;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.starter-hero-parallax-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
}

.starter-hero-parallax-desc {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 32px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
}

.starter-hero-parallax-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: #0f172a;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.starter-hero-parallax-btn:hover {
    background: #818cf8;
    color: white;
}

/* Entrance Animations */
.starter-hero-parallax-layer.active .starter-hero-parallax-subtitle { animation: starter-fadeInUp 0.6s ease-out 0.3s forwards; }
.starter-hero-parallax-layer.active .starter-hero-parallax-title { animation: starter-fadeInUp 0.6s ease-out 0.5s forwards; }
.starter-hero-parallax-layer.active .starter-hero-parallax-desc { animation: starter-fadeInUp 0.6s ease-out 0.7s forwards; }
.starter-hero-parallax-layer.active .starter-hero-parallax-btn { animation: starter-fadeInUp 0.6s ease-out 0.9s forwards; }