/* Sky Feature Styles */

/* Inherits variables from style.css */

.sky-container {
    width: 100%;
    max-width: 100vw;
    /* Strict viewport limit */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    padding: 0 1rem;
    /* Consistent horizontal padding */
    padding-top: 7rem;
    /* SAFE ZONE: Pushes everything down below the arrow */
    text-align: center;
    z-index: 1;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Start from top + padding, rather than center */
    align-items: center;
    margin: 0;
    /* Remove auto centering which might fight with width */
    /* Strict centering */
    padding-bottom: 8rem;
    /* Bottom SAFE ZONE for floating buttons */
}

/* Back Button */
.back-btn {
    position: absolute;
    /* Changed from fixed to absolute to stick to top of document */
    top: 2rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 2500;
    font-size: 1.2rem;
}

.back-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
/* Star Breathe Animation (Social Proof) */
@keyframes star-breathe {

    0%,
    100% {
        opacity: 0.7;
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    }
}

.star-breathe {
    animation: star-breathe 3s ease-in-out infinite;
}

.sky-section {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    width: 100%;
    margin: auto;
}

.sky-section.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Abuse Prevention Notice Area */
.usage-notice-card {
    background: rgba(165, 180, 252, 0.08) !important;
    border: 1px solid rgba(165, 180, 252, 0.3) !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.8s ease forwards;
}

.usage-notice-card h4 {
    color: #a5b4fc;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.usage-notice-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   Redesigned Layout (Compact & Animated)
   ========================================= */

/* Hero & Typography Refinements */
.hero-header h1 {
    font-family: var(--font-sans);
    /* Switched to Sans for minimalism */
    font-weight: 300;
    font-size: 2.2rem;
    /* More compact */
    line-height: 1.2;
    margin-bottom: 0.8rem;
    background: linear-gradient(to bottom, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    /* Slightly reduced */
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Separator - Compact */
.hero-separator {
    color: rgba(255, 255, 255, 0.10);
    /* Slightly more subtle */
    font-size: 1.2rem;
    /* Slightly smaller */
    margin: 1rem 0;
    /* Reduced from 2rem */
    font-family: var(--font-serif);
}

/* Intro Text - Compact */
.hero-intro-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    /* Lighter base text for contrast */
    font-weight: 300;
    font-family: var(--font-sans);
    /* Use lighter Sans font */
}

.hero-intro-text p {
    margin-bottom: 1rem;
}

.hero-intro-text strong {
    font-weight: 500;
    /* Distinct but not too heavy */
    color: #ffffff;
    /* Pure white to pop */
}

/* Section Titles */
.section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* =========================================
   Photographer Gallery (Cinematic Fade)
   ========================================= */
.photographer-gallery {
    width: 100%;
    max-width: 900px;
    /* Wider than text to pop */
    margin: 3rem auto 2rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #0f172a;
    /* Dark placeholder base */
    border-radius: 4px;
    overflow: hidden;
    cursor: crosshair;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Cinematic easing */

    /* The "Fade" State (Default) */
    opacity: 0.5;
    filter: grayscale(100%) brightness(0.6) contrast(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Placeholder Visual (remove this when real imgs added) */
.placeholder-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-overlay::after {
    content: 'IMG';
    color: rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* The "Reveal" State (Hover) */
.gallery-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.03) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(165, 180, 252, 0.2);
    z-index: 10;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .photographer-gallery {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 Grid on Mobile */
        gap: 0.8rem;
    }

    /* On mobile, we might want a slightly higher default visibility 
         since "hover" doesn't exist, but 'active' does. 
         Let's bump base opacity so they are visible but still muted. */
    .gallery-item {
        opacity: 0.7;
        filter: grayscale(80%) brightness(0.8);
    }
}

/* Process Steps */
#sky-process {
    padding-bottom: 1rem;
}

.process-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 1rem;
    /* Reduced from 1.5rem */
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step.reverse-layout {
    flex-direction: row-reverse;
    text-align: right;
}

.step-content {
    flex: 1;
}

.step-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a5b4fc;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(165, 180, 252, 0.3);
    padding-bottom: 3px;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

/* --- ANIMATION CONTAINERS --- */
.step-image {
    flex: 0 0 100px;
    /* Reduced from 160px */
    width: 100px;
    /* Explicit width to prevent collapse in column mode */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Animation 1: Coordinates (Numbers & Scan) */
.anim-coords-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.coord-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    /* Thicker lines and higher opacity for visibility */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridRotate 20s linear infinite;
    opacity: 0.6;
    /* Increased from 0.3 */
}

.coord-scan {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    /* Thicker border */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scanPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(165, 180, 252, 0.3);
}

.coord-scan::before,
.coord-scan::after {
    content: '';
    position: absolute;
    background: white;
    box-shadow: 0 0 5px white;
}

/* Crosshairs */
.coord-scan::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.coord-scan::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
}

.coord-data {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-family: monospace;
    font-size: 9px;
    color: #fff;
    font-weight: bold;
    text-align: right;
    line-height: 1.2;
    text-shadow: 0 0 3px #a5b4fc;
    z-index: 10;
}

.coord-data::after {
    content: 'Scanning...';
    animation: numCycle 2s steps(4) infinite;
}

@keyframes gridRotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scanPulse {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        border-color: rgba(255, 255, 255, 0.4);
    }

    50% {
        width: 70px;
        height: 70px;
        opacity: 1;
        border-color: rgba(255, 255, 255, 1);
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        border-color: rgba(255, 255, 255, 0.4);
    }
}

@keyframes numCycle {
    0% {
        content: 'LAT 12.04\00B0';
    }

    25% {
        content: 'LON 89.22\00B0';
    }

    50% {
        content: 'ALT 4500m';
    }

    75% {
        content: 'DEC 23:59';
    }

    100% {
        content: 'RA 18h42m';
    }
}

/* Animation 2: Schema (Network) */
.anim-schema-container {
    width: 80px;
    height: 80px;
    position: relative;
    animation: rotateNetwork 12s linear infinite;
    /* Added 360 Spin */
}

@keyframes rotateNetwork {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.schema-node {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #a5b4fc;
    border-radius: 50%;
    box-shadow: 0 0 3px #a5b4fc;
}

/* Nodes Positions */
.n1 {
    top: 20%;
    left: 30%;
    animation: pulseNode 3s infinite;
}

.n2 {
    top: 50%;
    left: 50%;
    animation: pulseNode 3s infinite 0.5s;
}

.n3 {
    top: 30%;
    left: 70%;
    animation: pulseNode 3s infinite 1s;
}

.n4 {
    top: 80%;
    left: 40%;
    animation: pulseNode 3s infinite 1.5s;
}

.n5 {
    top: 70%;
    left: 80%;
    animation: pulseNode 3s infinite 2s;
}

.schema-line {
    position: absolute;
    background: rgba(165, 180, 252, 0.4);
    height: 1px;
    transform-origin: 0 50%;
}

@keyframes pulseNode {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Animation 3: Galaxy (Stars) */
.anim-art-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 200px;
}

.center-star {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8);
    position: absolute;
    z-index: 10;
    animation: corePulse 3s ease-in-out infinite;
}

.galaxy-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.g1 {
    width: 3px;
    height: 3px;
    animation: orbit1 4s linear infinite;
}

.g2 {
    width: 2px;
    height: 2px;
    animation: orbit2 6s linear infinite;
}

.g3 {
    width: 4px;
    height: 4px;
    animation: orbit3 8s linear infinite;
}

.g4 {
    width: 2px;
    height: 2px;
    animation: orbit1 5s linear infinite reverse;
}

.g5 {
    width: 3px;
    height: 3px;
    animation: orbit2 7s linear infinite reverse;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px 10px rgba(255, 255, 255, 1);
    }
}

@keyframes orbit1 {
    from {
        transform: rotate(0deg) translateX(25px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(25px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(0deg) translateX(35px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(35px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(0deg) translateX(15px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(15px) rotate(-360deg);
    }
}




@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Outcome Section - Compact & Visual */
#sky-outcome {
    max-width: 800px;
    /* Wider to accommodate side-by-side */
    margin: 0 auto;
    padding-bottom: 2rem;
}

.compact-outcome-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: left;
}



/* Phone Mockup CSS */
.outcome-visual {
    flex: 0 0 auto;
}

.phone-mockup {
    width: 140px;
    /* Compact visualization */
    height: 280px;
    border: 8px solid #1e293b;
    /* Frame color */
    border-radius: 20px;
    position: relative;
    background: #000;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        /* Drop shadow */
        inset 0 0 10px rgba(0, 0, 0, 0.8);
    /* Inner depth */
    overflow: hidden;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Outcome Text Spacing & Features */
.outcome-desc {
    margin-top: 1.5rem;
    /* Space from "Qué recibirás" label */
    margin-bottom: 2rem;
    /* Space from features list */
}

.outcome-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.outcome-feature-list li {
    font-size: 0.95rem;
    color: #a5b4fc;
    /* Keeping the requested color theme */
    font-weight: 300;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-check {
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-highlight {
    margin-top: 1.2rem;
    color: white !important;
    font-weight: 500;
    font-size: 1.05rem !important;
    /* Slightly larger */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 15px;
    background: #1e293b;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #0b1121;
    background-image: radial-gradient(circle at center, #1e293b 0%, #0b1121 100%);
    /* Image URL is inline styled and will override the gradient once loaded */
}

/* Glossy reflection */
.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 5;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .compact-outcome-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .outcome-text-content {
        max-width: 100%;
        text-align: center;
    }

    .phone-mockup {
        width: 130px;
        height: 260px;
        transform: rotate(0deg);
        /* No rotation on mobile to save horizontal space/align center */
        animation: floatPhoneMobile 6s ease-in-out infinite;
    }

    @keyframes floatPhoneMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }
}

.outcome-text {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Info */
#sky-pricing-info {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 4rem;
    /* Spacing before button */
}

.pricing-text {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.pricing-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
}

/* Big Start Button */
.big-start-btn {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 1.8rem;
    }

    .sky-container {
        padding-top: 90px;
        /* Adjusted to 90px as requested */
        padding-left: 1.5rem;
        /* Ensure side padding is consistent */
        padding-right: 1.5rem;
    }

    .process-step,
    .process-step.reverse-layout {
        flex-direction: column-reverse;
        /* Text on top, image on bottom logically? or Image top? Usually Image Top or Text Top. Let's stack. */
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .step-image {
        margin: 0 auto 2rem auto;
        /* Center animation on mobile */
    }
}

/* ... Existing Styles for Form, Products, Checkout ... */

/* Forms */
.creation-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.form-input {
    padding: 1rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #a5b4fc;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 0.5rem;
}

/* --- New Donation UI Styles --- */

.centered-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.donation-mode {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.donation-header {
    margin-bottom: 2.5rem;
    margin-top: 4rem;
}

.donation-header h3 {
    font-size: 2.2rem;
    background: linear-gradient(to right, #fff, #cecece);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.donation-header .section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.donation-header strong {
    color: #fff;
    font-weight: 600;
}

/* Donation Input */
.donation-input-wrapper {
    margin-bottom: 2rem;
    text-align: left;
}

.input-label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.glass-input:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: #a5b4fc;
    box-shadow: 0 0 20px rgba(165, 180, 252, 0.1);
}

.currency-symbol {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.big-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    font-weight: 600;
    width: 100%;
    margin: 0 1rem;
    outline: none;
    font-family: var(--font-serif);
}

.currency-code {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

/* Chips Grid */
.grid-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.grid-chips .chip-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.grid-chips .chip-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.grid-chips .chip-btn.active {
    background: white;
    color: #0f172a;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.chip-emoji {
    font-size: 1.4rem;
}

.chip-btn.outline {
    grid-column: 1 / -1;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    flex-direction: row;
    justify-content: center;
    font-size: 0.95rem;
}

.chip-btn.outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.chip-btn.outline.active {
    background: transparent;
    border-color: #a5b4fc;
    color: #a5b4fc;
    box-shadow: none;
}

/* Premium Upsell Box */
.premium-box {
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: left;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.premium-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.upsell-checkbox-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.upsell-checkbox-container input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: #a5b4fc;
    cursor: pointer;
    flex-shrink: 0;
}

.upsell-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.upsell-title {
    font-weight: 600;
    color: white;
    font-size: 1.05rem;
    white-space: normal;
}

.upsell-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: normal;
    line-height: 1.4;
}

.upsell-price-tag {
    background: rgba(165, 180, 252, 0.1);
    color: #a5b4fc;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(165, 180, 252, 0.2);
    flex-shrink: 0;
    white-space: nowrap;
}

/* Full Width Button */
.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid white;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Inline Partner Form */
.inline-form {
    transition: all 0.3s ease;
}

.inline-form.hidden {
    display: none;
}

.small-group {
    margin-bottom: 0.8rem;
}

.small-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    padding: 0.6rem;
}

/* Checkout Summary Refinement */
.order-summary {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: none;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.sub-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: none;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.total-highlight {
    color: #a5b4fc;
    font-size: 1.5rem;
}

.currency-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Starlight Glow Button (Option 3 - Elegant & Glowing) */
.starlight-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: var(--font-sans);
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.starlight-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 0 50px rgba(165, 180, 252, 0.2);
    transform: translateY(-2px) scale(1.02);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.starlight-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Primary Button Styles */
.primary-btn {
    /* Using starlight-btn styles as base if needed, or define distinct one */
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.dark-btn {
    background-color: #0f172a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    /* Consistent shape */
}

.dark-btn:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.light-large-btn {
    background-color: white;
    color: #0f172a;
    font-weight: 700;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    border-radius: 12px;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.light-large-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* --- MINI SOLAR SYSTEM SEPARATOR --- */
.mini-solar-system {
    width: 200px;
    height: 120px;
    position: relative;
    margin: 1rem auto 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.solar-sun {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.6);
    position: absolute;
    z-index: 10;
}

.solar-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.orbit-1 {
    width: 60px;
    height: 60px;
    animation: solarSpin 8s linear infinite;
}

.orbit-2 {
    width: 100px;
    height: 100px;
    animation: solarSpin 15s linear infinite reverse;
}

.orbit-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 255, 255, 0.05);
    animation: solarSpin 25s linear infinite;
}

.solar-planet {
    background: #a5b4fc;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 5px rgba(165, 180, 252, 0.5);
}

.planet-1 {
    width: 4px;
    height: 4px;
    top: 50%;
    right: -2px;
    margin-top: -2px;
}

.planet-2 {
    width: 6px;
    height: 6px;
    top: 0;
    left: 50%;
    margin-left: -3px;
    margin-top: -3px;
    background: #e0e7ff;
}

.planet-3 {
    width: 3px;
    height: 3px;
    bottom: 15%;
    right: 15%;
    opacity: 0.8;
}

@keyframes solarSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --- WIZARD FORM (ZEN MODE) - 3rd Attempt (Overlay Style) --- */
/* --- WIZARD FORM (ZEN MODE) - 3rd Attempt (Overlay Style) --- */
#sky-form-section {
    position: fixed;
    /* Fixed overlay */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    /* Hidden by default to prevent blocking interactions */
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.96);
    /* Slate 900 with slight transparency */
    backdrop-filter: blur(15px);
    /* Glass effect */
    z-index: 2000;
    /* Above everything */
    padding: 0;
    overflow: hidden;
}

/* Ensure flex display is maintained when active class is toggled if JS uses display:block */
#sky-form-section.active {
    display: flex !important;
}

#wizard-container {
    width: 100%;
    /* Use dynamic viewport height to account for mobile browser bars (address bar, toolbar) */
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    max-width: 800px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wizard-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Force full width stretching */
    margin: auto;
    /* Center if width < 100% */
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1rem;
    /* Reduce side padding slightly */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
    box-sizing: border-box;
    /* Ensure padding doesn't add to width */
}

.wizard-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    z-index: 10;
}

.wizard-content {
    width: 100%;
    height: 100%;
    /* Fill step height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center content vertically in the space ABOVE the button */
    gap: 1.5rem;
    padding-bottom: 8rem;
    /* Space for the absolute button */
}

/* Typography */
.wizard-question {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    /* Slightly smaller for better mobile fit */
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    /* margin-top: auto; REMOVED to allow simple stacking */
    width: 100%;
    text-align: center;
}


.wizard-subtext {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: #94a3b8;
    margin-top: 0;
    /* REMOVED negative margin to prevent overlap */
    font-weight: 300;
}

/* Inputs */
.wizard-input-container {
    width: 100%;
    max-width: 90%;
    /* Prevent touching edges on small screens */
    position: relative;
    margin: 0 auto;
    /* Force horizontal center */
}

.wizard-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
    text-align: center;
    font-family: var(--font-serif);
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0 auto;
    /* Ensure input itself is centered */
}

.wizard-input:focus {
    outline: none;
    border-color: #a5b4fc;
    box-shadow: 0 10px 20px -10px rgba(165, 180, 252, 0.1);
}

.time-select-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.time-select {
    width: auto !important;
    min-width: 80px;
    text-align: center;
    font-size: 1.5rem !important;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.time-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-top: -5px;
}

.wizard-input::placeholder {
    color: rgba(255, 255, 255, 0.1);
}

.wizard-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 12px;
    appearance: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.date-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Checkbox */
.wizard-checkbox-container {
    margin-top: 1rem;
}

.wizard-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.wizard-checkbox:hover {
    color: #fff;
}

.wizard-checkbox input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wizard-checkbox input:checked+.checkmark {
    background: #a5b4fc;
    border-color: #a5b4fc;
}

.wizard-checkbox input:checked+.checkmark::after {
    content: '✓';
    font-size: 16px;
    color: #0d1326;
    font-weight: bold;
}

.wizard-nav {
    position: absolute;
    bottom: 6rem;
    /* Lifted to avoid mobile bottom bars */
    /* Force stick to bottom */
    left: 0;
    width: 100%;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 20;
}

.wizard-btn {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.next-btn,
.finish-btn {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.next-btn:hover,
.finish-btn:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.prev-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
}

.prev-btn:hover {
    color: #fff;
    border-color: #fff;
}

/* --- ANIMATIONS PER STEP --- */
.wizard-animation-container {
    height: 140px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    opacity: 0.8;
}

/* 1. Identity (Soul Dot) */
.anim-identity {
    position: relative;
    width: 60px;
    height: 60px;
}

.identity-core {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px white;
    animation: pulseIdentity 3s ease-in-out infinite;
}

.identity-ring {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: absolute;
    animation: spinRing 8s linear infinite;
}

@keyframes pulseIdentity {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
}

@keyframes spinRing {
    100% {
        transform: rotate(360deg);
    }
}

/* 2. Orbit (Earth/Sun) */
.anim-orbit {
    position: relative;
    width: 120px;
    height: 120px;
}

.orbit-sun {
    width: 24px;
    height: 24px;
    background: #fbbf24;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.orbit-earth-path {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    animation: spinOrbit 10s linear infinite;
    pointer-events: none;
}

.orbit-earth {
    width: 10px;
    height: 10px;
    background: #60a5fa;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #60a5fa;
}

@keyframes spinOrbit {
    100% {
        transform: rotate(360deg);
    }
}

/* 3. Clock (Time) */
.anim-clock {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.clock-face {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 90px 0 rgba(255, 255, 255, 0.3), 45px 45px 0 rgba(255, 255, 255, 0.3), -45px 45px 0 rgba(255, 255, 255, 0.3);
}

.clock-hand {
    width: 1px;
    height: 40px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform-origin: bottom center;
    animation: spinClock 6s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes spinClock {
    100% {
        transform: rotate(360deg);
    }
}

/* 4. Radar (City) */
.anim-radar {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

.radar-scan {
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(165, 180, 252, 0.15) 360deg);
    animation: spinRadar 3s linear infinite;
    border-radius: 50%;
}

.radar-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 30%;
    left: 60%;
    animation: blinkRadar 1.5s infinite;
    box-shadow: 0 0 10px #fff;
}

@keyframes spinRadar {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blinkRadar {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* 5. Stream (Email) */
.anim-stream {
    position: relative;
    width: 140px;
    height: 60px;
    overflow: hidden;
}

.stream-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
}

.stream-particle {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    animation: streamFlow 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@keyframes streamFlow {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

/* 6. Creation Loader */
.large-anim {
    height: 200px;
}

.anim-creation-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.creation-core {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseCore 1.5s infinite alternate;
    box-shadow: 0 0 30px white;
}

.creation-ring {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: spinRing 12s linear infinite;
}

@keyframes pulseCore {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 1;
    }
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .wizard-question {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .wizard-input {
        font-size: 1.5rem;
    }

    .wizard-animation-container {
        height: 100px;
        margin-top: 1.5rem;
    }

    .wizard-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .date-group {
        gap: 0.5rem;
    }

    .wizard-select {
        padding: 0.6rem;
        font-size: 1rem;
    }
}

/* --- NEW REFINEMENTS (PROGRESS & SILHOUETTE) --- */

/* Progress Indicator */
.wizard-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 3000;
    /* Ensure it stays above back button */
}

.progress-bar {
    height: 100%;
    background: #a5b4fc;
    width: 0%;
    /* JS will animate this */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(165, 180, 252, 0.5);
}

/* Animation: Silhouette (Human/Soul) - DYNAMIC VERSION */
.anim-silhouette {
    position: relative;
    width: 100px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sil-head {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
    animation: silHeadBob 3s ease-in-out infinite;
    z-index: 2;
}

.sil-body {
    width: 60px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(165, 180, 252, 0) 100%);
    border-radius: 40% 40% 0 0;
    position: absolute;
    top: 55px;
    opacity: 0.8;
    animation: silBodyBreathe 3s ease-in-out infinite;
}

.sil-aura {
    width: 90px;
    height: 90px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    animation: silAuraSpin 8s linear infinite;
}

/* Extra energy particles for Silhouette */
.anim-silhouette::before,
.anim-silhouette::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: silParticles 2s infinite;
}

.anim-silhouette::before {
    left: 20%;
    top: 40%;
    animation-delay: 0.5s;
}

.anim-silhouette::after {
    right: 20%;
    top: 60%;
    animation-delay: 1.2s;
}


@keyframes silHeadBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes silBodyBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes silAuraSpin {
    0% {
        transform: rotate(0deg) scale(0.9);
        border-color: rgba(255, 255, 255, 0.2);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        border-color: rgba(255, 255, 255, 0.6);
    }

    100% {
        transform: rotate(360deg) scale(0.9);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

@keyframes silParticles {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-30px) scale(0);
        opacity: 0;
    }
}


/* Animation: Data Stream (Email/Send) - DYNAMIC UPLOAD VERSION */
.anim-stream {
    position: relative;
    width: 140px;
    height: 80px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Node (Server/Cloud) */
.stream-line {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    box-shadow: 0 0 20px rgba(165, 180, 252, 0.2);
}

/* New: Data Packets moving towards center */
.stream-particle {
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    top: 50%;
    /* Left Particle */
    left: 0;
    box-shadow: 0 0 10px #fff;
    animation: compressDataLeft 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add a second particle for right side via psuedo, to show convergence */
.anim-stream::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    top: 50%;
    right: 0;
    box-shadow: 0 0 10px #fff;
    animation: compressDataRight 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1) 0.75s;
    /* Offset */
}

@keyframes compressDataLeft {
    0% {
        left: -10%;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    100% {
        left: 50%;
        opacity: 0;
        transform: translateY(-50%) scale(0.2);
    }
}

@keyframes compressDataRight {
    0% {
        right: -10%;
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    100% {
        right: 50%;
        opacity: 0;
        transform: translateY(-50%) scale(0.2);
    }
}

/* FORCE BUTTON CASING OVERRIDE */
button,
.primary-btn,
.secondary-btn,
.glass-btn,
.wizard-btn,
.next-btn,
.finish-btn,
#submit-payment,
#confirm-product-btn {
    text-transform: none !important;
}

/* MOBILE SAFEGUARDS FOR WIZARD ALIGNMENT */
@media (max-width: 480px) {
    .sky-container {
        padding: 7rem 1rem 4rem 1rem !important;
        /* Preserves 7rem TOP safe zone, adds side padding */
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        justify-content: flex-start !important;
        /* Ensure it starts from top */
    }

    .wizard-step {
        padding: 2rem 0.5rem !important;
        /* Minimal internal padding */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }

    .wizard-question {
        font-size: 2.2rem !important;
        /* Smaller title to prevent wrapping cut-off */
        width: 100% !important;
        word-wrap: break-word;
    }
}

@keyframes cinematic-blur-in {
    0% {
        opacity: 0.3;
        filter: blur(10px);
        transform: translateY(5px) scale(0.98);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

.blur-reveal-hidden {
    opacity: 0.3 !important;
    filter: blur(10px) !important;
}

.blur-reveal-active {
    animation: cinematic-blur-in 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}


/* --- GAMIFIED DONATION CHIPS (Social Proof V2) --- */

/* Currency (Smaller & Aligned) */
.donation-input-group .currency-code {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-left: 0.5rem;
    align-self: center;
    transform: translateY(1px);
}

/* Chips Style Override */
.donation-chips.grid-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8rem !important;
    margin-bottom: 1.5rem;
}

.chip-btn {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0.8rem 0.5rem !important;
    height: auto;
    min-height: 70px;
}

.chip-btn strong {
    font-size: 0.8rem;
    /* Name size */
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2px;
    text-align: center;
}

.chip-btn .emoji-icon {
    font-size: 1.3rem;
    /* Emoji size */
    margin-bottom: 2px;
}

.chip-btn small {
    font-size: 0.75rem;
    color: #fff;
    /* Bright White */
    opacity: 1;
    /* No transparency */
    margin-top: 4px;
    font-weight: 500;
}

/* --- THE VECTOR CONNECTION (Minimalist Accordion) --- */
.vector-accordion-wrapper {
    width: 100%;
    max-width: 650px;
    margin: 4rem auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle boundary */
}

.vector-accordion {
    background: transparent;
    border: none;
}

.vector-header {
    padding: 2rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.vector-header::-webkit-details-marker {
    display: none;
}

.vector-header:hover {
    opacity: 1;
}

.vector-indicator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: top;
}

.vector-title {
    font-family: var(--font-sans);
    /* Clean sans for tech feel */
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
}

/* Open State Animation */
.vector-accordion[open] .vector-indicator {
    background: var(--accent);
    /* Light up the connector */
    transform: scaleY(1.5);
}

.vector-accordion[open] .vector-header {
    opacity: 1;
}

.vector-body {
    position: relative;
    padding-left: 20px;
}

/* The Drawing Line */
.vector-draw-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), transparent);
    opacity: 0;
    transition: height 0.8s ease, opacity 0.4s ease;
}

.vector-accordion[open] .vector-draw-line {
    height: 100%;
    opacity: 0.4;
}

.vector-content-inner {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.2s;
    padding-bottom: 2rem;
}

.vector-accordion[open] .vector-content-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Inner content cleanup */
.vector-content-inner #sky-process {
    background: transparent;
    padding: 0;
}

.vector-content-inner .step-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    opacity: 0.8;
}

.vector-content-inner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.feature-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

.outcome-feature-list li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- THE LUMINOUS PULSE (Ultra-Minimalist Accordion) --- */
.pulse-accordion-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
}

.pulse-accordion {
    background: transparent;
    border: none;
}

.pulse-header {
    padding: 2rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    display: block;
    animation: title-pulse 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.pulse-header::-webkit-details-marker {
    display: none;
}

@keyframes title-pulse {

    0%,
    100% {
        opacity: 0.4;
        text-shadow: 0 0 0px #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.pulse-header:hover {
    letter-spacing: 0.4em;
    opacity: 1 !important;
    animation-play-state: paused;
}

.pulse-body {
    padding-top: 1rem;
}

.pulse-content-inner {
    opacity: 0;
    filter: blur(5px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.pulse-accordion[open] .pulse-content-inner {
    opacity: 1;
    filter: blur(0);
}

.pulse-accordion[open] .pulse-header {
    animation: none;
    opacity: 1;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
}

/* Internal content refinement */
.pulse-content-inner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 80%;
    margin: 0 auto;
}

.pulse-content-inner .step-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    display: block;
}

.pulse-content-inner .feature-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    opacity: 0.5;
}
/* =========================================
   Redesigned Success Page (PremiumLook)
   ========================================= */

.success-container {
    padding: 4rem 1rem;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(165, 180, 252, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: successPulse 4s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.success-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sparkle-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    animation: sparkleSpin 3s ease-in-out infinite;
}

@keyframes sparkleSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.success-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.success-msg {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 450px;
    font-weight: 300;
}

.success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.success-instagram-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
}

.success-instagram-btn:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3) !important;
}

.secondary-text-btn {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.secondary-text-btn:hover {
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .success-title {
        font-size: 2.2rem;
    }
    .success-msg {
        font-size: 1rem;
    }
    .success-container {
        padding: 2rem 1rem;
    }
}
