body.unwind-page {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #0f0c0a 0%, #1a1a2e 50%, #000428 100%);
    color: rgba(226, 232, 240, 0.92);
    --text: rgba(226, 232, 240, 0.92);
    --text-light: rgba(148, 163, 184, 0.72);
    overflow-x: hidden;
    position: relative;
}

body.unwind-page a:not(.nav-link) {
    color: rgba(196, 210, 254, 0.88);
}

.unwind-main {
    padding-top: 0;
}

.unwind-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/unwind.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.unwind-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.unwind-logo {
    display: none;
}

.unwind-greeting {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 10rem 12%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%), 
                url('../assets/unwindbg-presentation.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.unwind-greeting h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    color: rgba(226, 232, 240, 0.96);
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.6));
    letter-spacing: -0.02em;
}

.unwind-greeting p {
    position: relative;
    z-index: 1;
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    color: rgba(226, 232, 240, 0.85);
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
    filter: drop-shadow(0 2px 15px rgba(0, 0, 0, 0.5));
    max-width: 700px;
    letter-spacing: 0.01em;
}

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

.unwind-questions-container {
    position: relative;
    width: 100vw;
    padding: 12rem 12% 10rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%), 
                url('../assets/unwindbg-presentation.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.question-block {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 0 10rem 0;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.question-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.question-block label {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    color: rgba(226, 232, 240, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.question-block textarea {
    width: 100%;
    max-width: 1000px;
    padding: 1.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    resize: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.6;
    min-height: 60px;
}

.question-block textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transform: translateY(-2px);
}

.question-block textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
}

.unwind-response {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10rem 12%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.2) 100%), 
                linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%),
                url('../assets/unwindbg-presentation.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1), transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.unwind-response.visible {
    opacity: 1;
    transform: translateY(0);
}

.response-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    text-align: left;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.response-text {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    font-weight: 400;
    color: rgba(226, 232, 240, 0.95);
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
    margin-bottom: 0;
    letter-spacing: -0.015em;
    filter: drop-shadow(0 6px 30px rgba(139, 92, 246, 0.3));
}

.unwind-footer {
    position: relative;
    width: 100vw;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 12%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 1) 100%), 
                url('../assets/unwindbg-presentation.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.unwind-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.unwind-footer p {
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    color: rgba(226, 232, 240, 0.92);
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
    max-width: 900px;
}

.unwind-reset-btn {
    position: relative;
    z-index: 1;
    padding: 1rem 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.unwind-reset-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.fade-in {
    opacity: 1;
    transform: none;
}

body.unwind-page.js-ready .fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.unwind-page.js-ready .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .unwind-greeting,
    .unwind-questions-container,
    .unwind-response,
    .unwind-footer {
        padding-left: 8%;
        padding-right: 8%;
        background-attachment: scroll;
    }

    .question-block {
        margin-bottom: 7rem;
    }
}

@media (max-width: 768px) {
    .unwind-greeting {
        min-height: 80vh;
        padding: 6rem 7%;
    }

    .unwind-questions-container {
        padding: 8rem 7% 6rem;
    }

    .question-block {
        margin-bottom: 5rem;
    }

    .question-block label {
        margin-bottom: 2rem;
    }

    .question-block textarea {
        max-width: 100%;
        padding: 1rem 0;
        min-height: 50px;
    }

    .unwind-response,
    .unwind-footer {
        padding: 6rem 7%;
    }

    .unwind-footer {
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .unwind-hero {
        min-height: 70vh;
    }

    .unwind-greeting {
        padding: 5rem 6%;
    }

    .question-block {
        margin-bottom: 4rem;
    }

    .unwind-response {
        min-height: auto;
        padding: 5rem 6%;
    }

    .unwind-footer {
        padding: 5rem 6%;
    }
}

/* ===== UNWIND V2 INTERACTIVE COMPONENTS ===== */

/* Interaction Blocks */
.interaction-block {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 0 10rem 0;
}

body.unwind-page.js-ready .interaction-block {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 0 10rem 0;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.unwind-page.js-ready .interaction-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Emoji Scale Component */
.emoji-scale {
    width: 100%;
    max-width: 1200px;
}

.emoji-scale-label {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    color: rgba(226, 232, 240, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.scale-track {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.scale-point {
    flex: 1;
    min-width: 60px;
    padding: 1.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
}

.scale-point:hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.scale-point.selected {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-color: #8B5CF6;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.scale-point .emoji {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.scale-point .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Playfair Display', serif;
}

.scale-point.selected .value {
    color: rgba(255, 255, 255, 1);
}

.scale-hint {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 1rem;
}

/* Topic Cards Component */
.topic-cards-container {
    width: 100%;
    max-width: 1200px;
}

.topic-cards-label {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    color: rgba(226, 232, 240, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 60%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.topic-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.topic-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.topic-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.topic-card.selected {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-color: #8B5CF6;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.topic-card .icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.topic-card .label {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.topic-hint {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 1rem;
}

/* Continue Button */
.continue-btn {
    margin-top: 2.5rem;
    padding: 1.25rem 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(124, 58, 237, 0.4) 100%);
    border: 2px solid #8B5CF6;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.continue-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(124, 58, 237, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.continue-btn:active {
    transform: translateY(0) scale(1);
}

/* Response Enhancements */
.response-message {
    margin-bottom: 3rem;
}

.response-message p {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 400;
    color: rgba(226, 232, 240, 0.95);
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
    letter-spacing: -0.015em;
    filter: drop-shadow(0 6px 30px rgba(139, 92, 246, 0.3));
}

.response-suggestions,
.response-resources {
    margin-top: 3rem;
}

.response-suggestions h3,
.response-resources h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.response-suggestions ul,
.response-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.response-suggestions li,
.response-resources li {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.response-suggestions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1.5rem;
}

.response-resources li {
    padding: 1rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid #8B5CF6;
    border-radius: 0.5rem;
    backdrop-filter: blur(5px);
}

.response-resources li.urgent {
    background: rgba(239, 68, 68, 0.2);
    border-left-color: #EF4444;
    animation: urgentPulse 2s ease-in-out infinite;
}

.response-resources li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.response-resources li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@keyframes urgentPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
    }
}

/* Responsive Adjustments for Interactive Components */
@media (max-width: 1024px) {
    .scale-track {
        gap: 0.5rem;
    }

    .scale-point {
        min-width: 50px;
        padding: 1.25rem 0.5rem;
    }

    .topic-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .topic-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .scale-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scale-point {
        min-width: calc(20% - 0.5rem);
        max-width: 70px;
    }

    .topic-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .continue-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .response-suggestions li,
    .response-resources li {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scale-point {
        min-width: calc(20% - 0.4rem);
        padding: 1rem 0.4rem;
    }

    .scale-point .emoji {
        font-size: 1.8rem;
    }

    .scale-point .value {
        font-size: 0.9rem;
    }

    .topic-cards {
        gap: 0.75rem;
    }

    .topic-card {
        padding: 1.25rem 0.75rem;
    }

    .topic-card .icon {
        font-size: 2.5rem;
    }

    .topic-card .label {
        font-size: 1.1rem;
    }

    .continue-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}
