/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

/* Custom Font Integration */
@font-face {
    font-family: 'Shonaliem';
    src: url('../../branding/font/Shonaliem.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Improves loading performance */
}

/* CSS Custom Properties for Consistent Theming */
:root {
    /* Typography */
    --font-primary: 'Shonaliem', 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Montserrat', 'Avenir Next', 'Avenir', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    /* Base Neutrals */
    --color-bg-primary: #F1EFEB;
    --color-bg-secondary: #FDFDFD;
    --color-bg-warm: #D9D2C8;

    /* Text Colors */
    --color-text-primary: #383736;
    --color-text-secondary: #30384A;
    --color-text-tertiary: #B3B3B3;
    --color-text-muted: #8E9DA8;

    /* Vibrant Colors */
    --color-green: #93BD3A;
    --color-orange: #D48C11;
    --color-pink: #D24E6A;
    --color-yellow: #D3B818;
    --color-blue: #899DD2;
    --color-purple: #AD90AE;
    --color-deep-purple: #684A82;
    --color-deep-orange: #D76000;

    /* Semantic Color Assignments */
    --color-primary-accent: #93BD3A;
    --color-secondary-accent: #D48C11;
    --color-tertiary-accent: #D24E6A;
    --color-quaternary-accent: #899DD2;

    /* Legacy color mappings for existing styles */
    --color-primary: #684A82;
    --color-secondary: #D48C11;
    --color-accent: #93BD3A;
    --color-background: #FDFDFD;
    --color-background-alt: #F1EFEB;

    /* Handmade Paper Texture Patterns */
    --texture-paper-light:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 115, 85, 0.008) 2px, rgba(139, 115, 85, 0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(107, 142, 127, 0.005) 2px, rgba(107, 142, 127, 0.005) 4px),
        radial-gradient(ellipse 800px 600px at 50% 0%, transparent 40%, rgba(241, 239, 235, 0.03) 100%);

    --texture-paper-warm:
        repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(217, 210, 200, 0.015) 1px, rgba(217, 210, 200, 0.015) 3px),
        repeating-linear-gradient(-45deg, transparent, transparent 1px, rgba(139, 115, 85, 0.01) 1px, rgba(139, 115, 85, 0.01) 3px),
        radial-gradient(ellipse 1000px 800px at 30% 70%, transparent 50%, rgba(217, 210, 200, 0.02) 100%);

    --texture-paper-subtle:
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(142, 157, 168, 0.003) 1px, rgba(142, 157, 168, 0.003) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(241, 239, 235, 0.005) 1px, rgba(241, 239, 235, 0.005) 2px),
        radial-gradient(ellipse 1200px 900px at 80% 20%, transparent 60%, rgba(253, 253, 253, 0.01) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
}

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

/* Typography Hierarchy */
body {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    background-image: var(--texture-paper-subtle);
}

/* Headings use custom font with fallbacks */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
    font-weight: normal;
    /* Shonaliem is decorative, normal weight works best */
}

h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

/* Main title and subtitle styling moved to Landing View section */

/* Button text uses custom font for highlights */
.breathing-button,
.submit-button {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
}

/* Ensure accessibility with proper contrast and fallbacks */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* View management with smooth transitions */
.view {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.view.hidden {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

.view.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Ensure body can handle absolute positioned views */
body {
    position: relative;
    overflow-x: hidden;
}

/* Landing View Specific Layout */
#landing-view {
    background: var(--color-bg-primary);
    background-image: var(--texture-paper-light);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
}

.landing-header {
    margin-bottom: var(--spacing-lg);
}

.main-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-deep-purple);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 0;
    font-style: italic;
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breathing Section Layout */
.breathing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-lg);
}

/* Circular Start Button Styling */
.breathing-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--color-green);
    background: var(--color-green);
    color: var(--color-bg-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(147, 189, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.breathing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, var(--color-green) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.breathing-button:hover {
    background: var(--color-deep-purple);
    color: var(--color-bg-secondary);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(104, 74, 130, 0.4);
    border-color: var(--color-deep-purple);
}

.breathing-button:hover::before {
    opacity: 0.1;
}

.breathing-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 189, 58, 0.4);
}

.breathing-button:active {
    transform: scale(0.98);
}

.button-text {
    position: relative;
    z-index: 3;
    font-weight: normal;
    letter-spacing: 0.05em;
}

/* Skip Button Styling - Subtle and Unobtrusive */
.skip-button {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-block;
}

.skip-button:hover {
    color: var(--color-pink);
    opacity: 1;
    text-decoration-color: var(--color-pink);
    background: var(--color-bg-primary);
}

.skip-button:focus {
    outline: none;
    color: var(--color-pink);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(210, 78, 106, 0.3);
    text-decoration-color: var(--color-pink);
}

.skip-button:active {
    transform: scale(0.98);
}

/* Hide skip button during breathing exercise */
.skip-button.hidden-during-breathing {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

/* Enhanced Form Styling with Healing Theme */
.signup-form {
    max-width: 450px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--color-bg-secondary);
    background-image: var(--texture-paper-warm);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(210, 78, 106, 0.15);
    border: 2px solid var(--color-pink);
    position: relative;
}

/* Subtle decorative element for healing theme */
.signup-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--color-pink) 50%, transparent 100%);
    border-radius: 0 0 8px 8px;
}

.form-group {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--color-primary);
    font-weight: normal;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.form-group input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-sm);
    border: 2px solid var(--color-background-alt);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    background: var(--color-background);
    color: var(--color-text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.7;
    font-style: italic;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(147, 189, 58, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover:not(:focus) {
    border-color: var(--color-orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Input validation states */
.form-group input.valid {
    border-color: var(--color-green);
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(147, 189, 58, 0.03) 100%);
}

.form-group input.invalid {
    border-color: var(--color-deep-orange);
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(215, 96, 0, 0.03) 100%);
}

.submit-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-orange);
    color: var(--color-bg-secondary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 140, 17, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover {
    background: var(--color-deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 96, 0, 0.4);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 140, 17, 0.3);
}

.submit-button:disabled {
    background: var(--color-text-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

.submit-button:disabled::before {
    display: none;
}

/* Button loading state */
.submit-button.loading {
    cursor: wait;
    background: var(--color-text-secondary);
}

.submit-button.loading .button-text {
    opacity: 0.7;
}

/* Error and Success Messages */
.error-message {
    color: var(--color-deep-orange);
    /* Accessible red for errors */
    font-size: var(--font-size-sm);
    font-family: var(--font-secondary);
    display: none;
    /* Hidden by default, shown via JavaScript */
    margin-top: var(--spacing-xs);
    font-weight: 500;
    line-height: var(--line-height-tight);
}

.success-message {
    color: var(--color-green);
    font-size: var(--font-size-sm);
    font-family: var(--font-secondary);
    display: block;
    margin-top: var(--spacing-xs);
    font-weight: 500;
    line-height: var(--line-height-tight);
}

/* Utility Classes */
.hidden {
    display: none;
}

/* In
formation View Specific Styles */
.info-header {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    background: var(--color-background-alt);
}

.page-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.content-section {
    padding: var(--spacing-lg) var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

.healing-content h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.healing-content p {
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-sm);
}

.signup-section {
    background: var(--color-background-alt);
    background-image: var(--texture-paper-warm);
    padding: var(--spacing-xl) var(--spacing-sm);
}

.signup-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.signup-container h2 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-3xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Subtle underline decoration for signup header */
.signup-container h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
}

/* Enhanced Value Proposition Styling */
.value-proposition {
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-lg);
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(107, 142, 127, 0.08) 0%, rgba(139, 115, 85, 0.05) 100%);
    background-image: var(--texture-paper-light);
    border-radius: 12px;
    border: 1px solid rgba(107, 142, 127, 0.15);
    position: relative;
    box-shadow: 0 4px 15px rgba(107, 142, 127, 0.1);
}

/* Decorative element for value proposition */
.value-proposition::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-background);
    padding: 0 var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.value-proposition strong {
    color: var(--color-accent);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    text-shadow: 0 1px 2px rgba(107, 142, 127, 0.2);
}

/* Form Feedback */
.form-feedback {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 4px;
    text-align: center;
}

.form-feedback.success {
    background: rgba(147, 189, 58, 0.1);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.form-feedback.error {
    background: rgba(215, 96, 0, 0.1);
    color: var(--color-deep-orange);
    border: 1px solid var(--color-deep-orange);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: var(--spacing-xs);
}

/* Ensure hidden class takes precedence over loading-spinner display */
.loading-spinner.hidden {
    display: none !important;
}

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

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

/* Texture overlay animation for breathing phases */
@keyframes fadeInTexture {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0.05;
    }

    70% {
        opacity: 0.15;
    }

    100% {
        opacity: 0.1;
    }
}

/* Subtle glow effect during breathing phases */
@keyframes breathingGlow {
    0% {
        box-shadow: 0 4px 20px rgba(147, 189, 58, 0.2);
    }

    50% {
        box-shadow: 0 8px 30px rgba(147, 189, 58, 0.5);
    }

    100% {
        box-shadow: 0 4px 20px rgba(137, 157, 210, 0.3);
    }
}

/* Enhanced Breathing Animation Keyframes with Color Transitions */
@keyframes breatheInhale {
    0% {
        transform: scale(1);
        border-width: 3px;
        background: var(--color-green);
        box-shadow: 0 4px 20px rgba(147, 189, 58, 0.2);
    }

    50% {
        background: linear-gradient(135deg, var(--color-green) 0%, rgba(147, 189, 58, 0.8) 100%);
        box-shadow: 0 6px 25px rgba(147, 189, 58, 0.35);
    }

    100% {
        transform: scale(1.67);
        /* 120px to 200px = 1.67x scale */
        border-width: 2px;
        background: var(--color-green);
        box-shadow: 0 8px 30px rgba(147, 189, 58, 0.4);
    }
}

@keyframes breatheExhale {
    0% {
        transform: scale(1.67);
        border-width: 2px;
        background: var(--color-green);
        box-shadow: 0 8px 30px rgba(147, 189, 58, 0.4);
    }

    50% {
        background: linear-gradient(135deg, var(--color-blue) 0%, rgba(137, 157, 210, 0.8) 100%);
        box-shadow: 0 6px 25px rgba(137, 157, 210, 0.35);
    }

    100% {
        transform: scale(1);
        border-width: 3px;
        background: var(--color-blue);
        box-shadow: 0 4px 20px rgba(137, 157, 210, 0.3);
    }
}

/* Enhanced Breathing Animation Classes with Texture Overlays */
.breathing-button.inhaling {
    animation: breatheInhale 4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
    position: relative;
}

.breathing-button.inhaling::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--texture-paper-subtle);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    animation: fadeInTexture 4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.breathing-button.exhaling {
    animation: breatheExhale 6s cubic-bezier(0.4, 0, 0.6, 1) forwards;
    position: relative;
}

.breathing-button.exhaling::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--texture-paper-light);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: fadeInTexture 6s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

/* Enhanced breathing completion state with solid color */
.breathing-button.breathing-complete {
    background: var(--color-deep-purple);
    background-image: var(--texture-paper-warm);
    color: var(--color-bg-secondary);
    transform: scale(1);
    animation: none;
    box-shadow: 0 6px 25px rgba(104, 74, 130, 0.4);
    border-color: var(--color-deep-purple);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.6, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
}

.breathing-button.breathing-complete .button-text {
    color: var(--color-bg-secondary);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
}

.breathing-button.breathing-complete::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--texture-paper-warm);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced breathing button states for animation */
.breathing-button.breathing-active {
    cursor: default;
    box-shadow: 0 8px 30px rgba(147, 189, 58, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.breathing-button.breathing-active:hover {
    transform: none;
    /* Disable hover effects during breathing */
    background: inherit;
    color: inherit;
}

/* Smooth transition between breathing phases */
.breathing-button.breathing-active .button-text {
    transition: color 0.5s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    z-index: 2;
}

/* Text transition for inhale/exhale labels */
.breathing-button .button-text {
    transition: opacity 0.3s ease-in-out;
}

.breathing-button.text-changing .button-text {
    opacity: 0;
}

/* Enhanced breathing phase visual enhancements with new colors */
.breathing-button.inhaling {
    background: var(--color-green) !important;
    background-image: var(--texture-paper-subtle);
    color: var(--color-bg-secondary) !important;
    box-shadow: 0 8px 30px rgba(147, 189, 58, 0.4);
    border-color: var(--color-green) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breathing-button.exhaling {
    background: var(--color-blue) !important;
    background-image: var(--texture-paper-light);
    color: var(--color-bg-secondary) !important;
    box-shadow: 0 4px 20px rgba(137, 157, 210, 0.3);
    border-color: var(--color-blue) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Pause state between breaths */
.breathing-button.paused {
    animation: none;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.6, 1);
}

/* Information View Specific Styles */
.info-header {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-background-alt) 0%, rgba(107, 142, 127, 0.05) 100%);
    background-image: var(--texture-paper-light);
    border-bottom: 1px solid rgba(107, 142, 127, 0.1);
}

.page-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    color: var(--color-deep-purple);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section {
    padding: var(--spacing-lg) var(--spacing-sm);
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-background);
}

/* Reduce top spacing for the first content section */
.content-section:first-of-type {
    padding-top: var(--spacing-sm);
}

/* Crystal Healing Content Styling */
.healing-content {
    line-height: var(--line-height-relaxed);
    position: relative;
}

/* Subtle healing theme decorative elements */
.healing-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    opacity: 0.6;
}

.healing-content h2 {
    font-family: var(--font-primary);
    color: var(--color-deep-purple);
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-size: var(--font-size-3xl);
}

.healing-content h3 {
    font-family: var(--font-primary);
    color: var(--color-deep-purple);
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    font-size: var(--font-size-2xl);
    text-align: center;
}

/* Remove top margin from the first h3 in intro section */
.intro-section h3 {
    margin-top: 0;
}

/* Rotating colors for section headings */
.healing-benefits h3 {
    color: var(--color-orange);
}

.crystal-types h3 {
    color: var(--color-green);
}

.healing-modalities h3 {
    color: var(--color-pink);
}

.session-info h3 {
    color: var(--color-blue);
}

.healing-content h4 {
    font-family: var(--font-primary);
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-lg);
}

.healing-content p {
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-sm);
}

/* Introduction Section */
.intro-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-background-alt) 0%, rgba(107, 142, 127, 0.03) 100%);
    background-image: var(--texture-paper-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.intro-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
}

/* Benefits Grid */
.healing-benefits {
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-bg-primary);
    background-image: var(--texture-paper-subtle);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-green);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 189, 58, 0.15);
}

/* Alternating accent colors for benefit items */
.benefit-item:nth-child(1) {
    background: var(--color-bg-primary);
    border-top-color: var(--color-green);
}

.benefit-item:nth-child(1):hover {
    box-shadow: 0 8px 25px rgba(147, 189, 58, 0.15);
}

.benefit-item:nth-child(2) {
    background: var(--color-bg-secondary);
    border-top-color: var(--color-orange);
}

.benefit-item:nth-child(2):hover {
    box-shadow: 0 8px 25px rgba(212, 140, 17, 0.15);
}

.benefit-item:nth-child(3) {
    background: var(--color-bg-primary);
    border-top-color: var(--color-pink);
}

.benefit-item:nth-child(3):hover {
    box-shadow: 0 8px 25px rgba(210, 78, 106, 0.15);
}

.benefit-item:nth-child(4) {
    background: var(--color-bg-secondary);
    border-top-color: var(--color-blue);
}

.benefit-item:nth-child(4):hover {
    box-shadow: 0 8px 25px rgba(137, 157, 210, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.benefit-item h4 {
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--color-green);
}

/* Alternating colors for benefit item headings */
.benefit-item:nth-child(1) h4 {
    color: var(--color-green);
}

.benefit-item:nth-child(2) h4 {
    color: var(--color-orange);
}

.benefit-item:nth-child(3) h4 {
    color: var(--color-pink);
}

.benefit-item:nth-child(4) h4 {
    color: var(--color-blue);
}

.benefit-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Crystal Types Section */
.crystal-types {
    margin-bottom: var(--spacing-xl);
}

.crystals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.crystal-item {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-background-alt) 0%, rgba(139, 115, 85, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crystal-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(107, 142, 127, 0.1);
}

.crystal-item h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xl);
}

.crystal-item p {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
}

.crystal-item p strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* Specific crystal type color theming */
.crystal-item:nth-child(1) {
    /* Amethyst - Purple theme */
    border-left-color: var(--color-purple);
}

.crystal-item:nth-child(1) h4 {
    color: var(--color-purple);
}

.crystal-item:nth-child(1) p strong {
    color: var(--color-purple);
}

.crystal-item:nth-child(1):hover {
    box-shadow: 0 4px 15px rgba(173, 144, 174, 0.2);
}

.crystal-item:nth-child(2) {
    /* Rose Quartz - Pink theme */
    border-left-color: var(--color-pink);
}

.crystal-item:nth-child(2) h4 {
    color: var(--color-pink);
}

.crystal-item:nth-child(2) p strong {
    color: var(--color-pink);
}

.crystal-item:nth-child(2):hover {
    box-shadow: 0 4px 15px rgba(210, 78, 106, 0.2);
}

.crystal-item:nth-child(3) {
    /* Clear Quartz - Warm beige theme */
    border-left-color: var(--color-bg-warm);
}

.crystal-item:nth-child(3) h4 {
    color: var(--color-text-primary);
}

.crystal-item:nth-child(3) p strong {
    color: var(--color-text-primary);
}

.crystal-item:nth-child(3):hover {
    box-shadow: 0 4px 15px rgba(217, 210, 200, 0.3);
}

.crystal-item:nth-child(4) {
    /* Black Tourmaline - Deep navy theme */
    border-left-color: var(--color-text-secondary);
}

.crystal-item:nth-child(4) h4 {
    color: var(--color-text-secondary);
}

.crystal-item:nth-child(4) p strong {
    color: var(--color-text-secondary);
}

.crystal-item:nth-child(4):hover {
    box-shadow: 0 4px 15px rgba(48, 56, 74, 0.2);
}

/* Healing Modalities Section */
.healing-modalities {
    margin-bottom: var(--spacing-xl);
}

.modalities-intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.modality-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-background);
    border: 2px solid var(--color-background-alt);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modality-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-yellow);
    transition: height 0.3s ease;
}

.modality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modality-item:hover::before {
    height: 8px;
}

.modality-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
    transition: transform 0.3s ease;
}

.modality-item:hover .modality-icon {
    transform: scale(1.1);
}

.modality-item h4 {
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--color-yellow);
    transition: color 0.3s ease;
}

.modality-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Specific modality color theming */
.modality-item:nth-child(1) {
    /* Sound Healing - Yellow theme */
    border-color: rgba(211, 184, 24, 0.2);
}

.modality-item:nth-child(1)::before {
    background: var(--color-yellow);
}

.modality-item:nth-child(1) h4 {
    color: var(--color-yellow);
}

.modality-item:nth-child(1):hover {
    border-color: var(--color-yellow);
    box-shadow: 0 8px 25px rgba(211, 184, 24, 0.2);
}

.modality-item:nth-child(2) {
    /* Aromatherapy - Green theme */
    border-color: rgba(147, 189, 58, 0.2);
}

.modality-item:nth-child(2)::before {
    background: var(--color-green);
}

.modality-item:nth-child(2) h4 {
    color: var(--color-green);
}

.modality-item:nth-child(2):hover {
    border-color: var(--color-green);
    box-shadow: 0 8px 25px rgba(147, 189, 58, 0.2);
}

.modality-item:nth-child(3) {
    /* Energy Work - Blue theme */
    border-color: rgba(137, 157, 210, 0.2);
}

.modality-item:nth-child(3)::before {
    background: var(--color-blue);
}

.modality-item:nth-child(3) h4 {
    color: var(--color-blue);
}

.modality-item:nth-child(3):hover {
    border-color: var(--color-blue);
    box-shadow: 0 8px 25px rgba(137, 157, 210, 0.2);
}

.modality-item:nth-child(4) {
    /* Access Bars - Purple theme */
    border-color: rgba(173, 144, 174, 0.2);
}

.modality-item:nth-child(4)::before {
    background: var(--color-purple);
}

.modality-item:nth-child(4) h4 {
    color: var(--color-purple);
}

.modality-item:nth-child(4):hover {
    border-color: var(--color-purple);
    box-shadow: 0 8px 25px rgba(173, 144, 174, 0.2);
}

/* Session Information Section */
.session-info {
    margin-bottom: var(--spacing-xl);
}

.session-steps {
    margin-top: var(--spacing-lg);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-bg-primary);
    background-image: var(--texture-paper-light);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-orange);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Alternating step content backgrounds and border colors */
.step-item:nth-child(1) {
    background: var(--color-bg-primary);
    background-image: var(--texture-paper-light);
    border-left-color: var(--color-orange);
}

.step-item:nth-child(1):hover {
    box-shadow: 0 4px 15px rgba(212, 140, 17, 0.15);
}

.step-item:nth-child(2) {
    background: var(--color-bg-secondary);
    background-image: var(--texture-paper-subtle);
    border-left-color: var(--color-green);
}

.step-item:nth-child(2):hover {
    box-shadow: 0 4px 15px rgba(147, 189, 58, 0.15);
}

.step-item:nth-child(3) {
    background: var(--color-bg-primary);
    background-image: var(--texture-paper-light);
    border-left-color: var(--color-pink);
}

.step-item:nth-child(3):hover {
    box-shadow: 0 4px 15px rgba(210, 78, 106, 0.15);
}

.step-item:nth-child(4) {
    background: var(--color-bg-secondary);
    background-image: var(--texture-paper-subtle);
    border-left-color: var(--color-blue);
}

.step-item:nth-child(4):hover {
    box-shadow: 0 4px 15px rgba(137, 157, 210, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: bold;
    margin-right: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Alternating background colors for step numbers */
.step-item:nth-child(1) .step-number {
    background: var(--color-orange);
}

.step-item:nth-child(2) .step-number {
    background: var(--color-green);
}

.step-item:nth-child(3) .step-number {
    background: var(--color-pink);
}

.step-item:nth-child(4) .step-number {
    background: var(--color-blue);
}

.step-content h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-deep-purple);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.step-content p {
    margin-bottom: 0;
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
}

/* Ensure proper contrast for step content headings */
.step-item:nth-child(1) .step-content h4 {
    color: var(--color-orange);
}

.step-item:nth-child(2) .step-content h4 {
    color: var(--color-green);
}

.step-item:nth-child(3) .step-content h4 {
    color: var(--color-pink);
}

.step-item:nth-child(4) .step-content h4 {
    color: var(--color-blue);
}

/* Call to Action Section */
.call-to-action {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-deep-purple);
    background-image: var(--texture-paper-warm);
    color: var(--color-bg-secondary);
    border-radius: 16px;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 8px 30px rgba(104, 74, 130, 0.4);
    position: relative;
    overflow: hidden;
}

/* Decorative accent elements */
.call-to-action::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--color-yellow) 50%, transparent 100%);
    border-radius: 0 0 8px 8px;
}

.call-to-action::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--color-yellow) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.call-to-action h3 {
    color: var(--color-bg-secondary);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-2xl);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Add colorful highlight to key words */
.call-to-action h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(211, 184, 24, 0.5);
}

.call-to-action .cta-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-bg-secondary) !important;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add subtle highlight to important words in CTA text */
.call-to-action .cta-text strong {
    color: var(--color-yellow);
    text-shadow: 0 0 8px rgba(211, 184, 24, 0.3);
}

/* Healer Introduction Styling */
.healer-intro {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.call-to-action .healer-credentials {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    max-width: 650px;
    margin: 0 auto var(--spacing-md) auto;
    color: var(--color-bg-secondary) !important;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.healer-credentials strong {
    color: var(--color-yellow);
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    text-shadow: 0 0 8px rgba(211, 184, 24, 0.3);
}

/* CTA Buttons Container */
.cta-buttons {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Instagram Button Styling */
.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-yellow);
    color: var(--color-deep-purple);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: normal;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(211, 184, 24, 0.3);
    border: 2px solid var(--color-yellow);
    position: relative;
    overflow: hidden;
    min-height: 52px;
    text-shadow: none;
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.instagram-button:hover {
    background: var(--color-bg-secondary);
    color: var(--color-deep-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 184, 24, 0.4);
    border-color: var(--color-bg-secondary);
}

.instagram-button:hover::before {
    left: 100%;
}

.instagram-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(211, 184, 24, 0.3);
}

.button-icon {
    font-size: var(--font-size-xl);
    line-height: 1;
}

/* Responsive Design Foundation */

/* Large screens - Enhanced layout */
@media (min-width: 1200px) {
    #landing-view {
        padding: var(--spacing-xl);
    }

    .breathing-button {
        width: 140px;
        height: 140px;
        font-size: var(--font-size-2xl);
    }

    /* Adjust breathing animation scale for larger buttons */
    @keyframes breatheInhale {
        0% {
            transform: scale(1);
            border-width: 3px;
        }

        100% {
            transform: scale(1.71);
            /* 140px to 240px = 1.71x scale */
            border-width: 2px;
        }
    }

    @keyframes breatheExhale {
        0% {
            transform: scale(1.71);
            border-width: 2px;
        }

        100% {
            transform: scale(1);
            border-width: 3px;
        }
    }

    .content-section {
        max-width: 1000px;
        padding: var(--spacing-xl) var(--spacing-lg);
    }

    .signup-form {
        max-width: 500px;
        padding: var(--spacing-xl);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    #landing-view {
        padding: var(--spacing-md);
    }

    .landing-header {
        margin-bottom: var(--spacing-lg);
    }

    .content-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .crystals-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Mobile landscape and tablet portrait */
@media (max-width: 768px) {
    #landing-view {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        justify-content: flex-start;
    }

    .landing-header {
        margin-bottom: var(--spacing-xl);
        margin-top: var(--spacing-lg);
    }

    .main-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
    }

    .subtitle {
        padding: 0 var(--spacing-sm);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .breathing-section {
        padding: var(--spacing-xl) 0;
        gap: var(--spacing-lg);
        flex: none;
        justify-content: flex-start;
    }

    .breathing-button {
        width: 100px;
        height: 100px;
        font-size: var(--font-size-lg);
        background: var(--color-green) !important;
        color: var(--color-bg-secondary) !important;
        border-color: var(--color-green) !important;
        /* Ensure touch-friendly size */
        min-width: 44px;
        min-height: 44px;
    }

    /* Adjust breathing animation scale for medium buttons */
    @keyframes breatheInhale {
        0% {
            transform: scale(1);
            border-width: 3px;
        }

        100% {
            transform: scale(1.6);
            /* 100px to 160px = 1.6x scale */
            border-width: 2px;
        }
    }

    @keyframes breatheExhale {
        0% {
            transform: scale(1.6);
            border-width: 2px;
        }

        100% {
            transform: scale(1);
            border-width: 3px;
        }
    }

    .skip-button {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
        /* Ensure touch-friendly size */
        min-height: 44px;
        min-width: 44px;
    }

    .content-section,
    .signup-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    /* Form responsive adjustments for tablet */
    .signup-form {
        max-width: 400px;
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-sm);
    }

    .form-group input {
        padding: var(--spacing-md) var(--spacing-sm);
        font-size: var(--font-size-base);
        /* Ensure touch-friendly input fields */
        min-height: 48px;
        border-radius: 8px;
    }

    .submit-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        /* Ensure touch-friendly button size */
        min-height: 48px;
        border-radius: 8px;
    }

    /* Information view responsive adjustments */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .crystals-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .modalities-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .step-number {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
        /* Ensure touch-friendly size */
        min-width: 44px;
        min-height: 44px;
    }

    /* Improve text readability on smaller screens */
    .healing-content h2 {
        font-size: var(--font-size-2xl);
    }

    .healing-content h3 {
        font-size: var(--font-size-xl);
        margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
    }

    .intro-section,
    .benefit-item,
    .crystal-item,
    .modality-item,
    .call-to-action {
        padding: var(--spacing-md);
    }

    /* Adjust CTA decorative elements for tablet */
    .call-to-action::before {
        width: 80px;
        height: 3px;
    }

    .call-to-action::after {
        width: 50px;
        height: 50px;
        right: 15px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    #landing-view {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        justify-content: flex-start;
    }

    .landing-header {
        margin-bottom: var(--spacing-lg);
        margin-top: var(--spacing-md);
    }

    .main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
    }

    .subtitle {
        padding: 0 var(--spacing-xs);
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 1.4;
    }

    .breathing-section {
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-md);
        flex: none;
        justify-content: flex-start;
    }

    .skip-button {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
        /* Ensure touch-friendly size */
        min-height: 44px;
        min-width: 60px;
    }

    .breathing-button {
        width: 90px;
        height: 90px;
        font-size: var(--font-size-base);
        border-width: 2px;
        background: var(--color-green) !important;
        color: var(--color-bg-secondary) !important;
        border-color: var(--color-green) !important;
        /* Ensure touch-friendly size */
        min-width: 44px;
        min-height: 44px;
    }

    /* Adjust breathing animation scale for smaller buttons */
    @keyframes breatheInhale {
        0% {
            transform: scale(1);
            border-width: 2px;
        }

        100% {
            transform: scale(1.56);
            /* 90px to 140px = 1.56x scale */
            border-width: 1px;
        }
    }

    @keyframes breatheExhale {
        0% {
            transform: scale(1.56);
            border-width: 1px;
        }

        100% {
            transform: scale(1);
            border-width: 2px;
        }
    }

    .page-title {
        font-size: var(--font-size-2xl);
    }

    /* Mobile adjustments for information view */
    .intro-section,
    .benefit-item,
    .crystal-item,
    .modality-item,
    .step-item,
    .call-to-action {
        padding: var(--spacing-md);
    }

    /* Adjust CTA decorative elements for mobile */
    .call-to-action::before {
        width: 60px;
        height: 2px;
        top: -15px;
    }

    .call-to-action::after {
        width: 40px;
        height: 40px;
        right: 10px;
        bottom: -15px;
    }

    .call-to-action h3::after {
        width: 60px;
        height: 2px;
    }

    /* Form responsive adjustments for mobile */
    .signup-form {
        max-width: 100%;
        padding: var(--spacing-md);
        margin: 0 var(--spacing-xs);
        border-radius: 12px;
    }

    /* Value proposition mobile adjustments */
    .value-proposition {
        font-size: var(--font-size-base);
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .value-proposition strong {
        font-size: var(--font-size-lg);
    }

    .signup-container h2 {
        font-size: var(--font-size-2xl);
    }

    .form-group {
        margin-bottom: var(--spacing-md);
    }

    .form-group label {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }

    .form-group input {
        padding: var(--spacing-md) var(--spacing-sm);
        font-size: var(--font-size-base);
        border-radius: 8px;
        /* Ensure touch-friendly input fields */
        min-height: 48px;
        line-height: 1.2;
    }

    .submit-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        border-radius: 8px;
        /* Ensure touch-friendly button size */
        min-height: 52px;
        letter-spacing: 0.02em;
    }

    .healing-content h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-sm);
    }

    .healing-content h3 {
        font-size: var(--font-size-xl);
        margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
    }

    .healing-content h4 {
        font-size: var(--font-size-lg);
    }

    .benefit-icon,
    .modality-icon {
        font-size: 2rem;
        margin-bottom: var(--spacing-xs);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
        /* Ensure touch-friendly size */
        min-width: 44px;
        min-height: 44px;
    }

    /* Improve spacing for mobile readability */
    .content-section {
        padding: var(--spacing-md) var(--spacing-xs);
    }

    .signup-section {
        padding: var(--spacing-lg) var(--spacing-xs);
    }

    /* Optimize text sizes for mobile */
    .intro-text {
        font-size: var(--font-size-base);
    }

    .benefit-item p,
    .crystal-item p,
    .modality-item p,
    .step-content p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-relaxed);
    }

    .call-to-action .cta-text {
        font-size: var(--font-size-base);
        color: var(--color-bg-secondary) !important;
    }

    .call-to-action .healer-credentials {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
        color: var(--color-bg-secondary) !important;
    }

    .call-to-action .healer-credentials strong {
        font-size: var(--font-size-lg);
    }

    .cta-buttons {
        margin-top: var(--spacing-md);
        flex-direction: column;
        align-items: center;
    }

    .instagram-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        min-height: 48px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    #landing-view {
        padding: var(--spacing-xl);
    }

    .breathing-button {
        width: 140px;
        height: 140px;
        font-size: var(--font-size-2xl);
    }

    /* Adjust breathing animation scale for larger buttons */
    @keyframes breatheInhale {
        0% {
            transform: scale(1);
            border-width: 3px;
        }

        100% {
            transform: scale(1.71);
            /* 140px to 240px = 1.71x scale */
            border-width: 2px;
        }
    }

    @keyframes breatheExhale {
        0% {
            transform: scale(1.71);
            border-width: 2px;
        }

        100% {
            transform: scale(1);
            border-width: 3px;
        }
    }

    .breathing-section {
        padding: var(--spacing-xl) 0;
    }
}

/* Erro
r Handling and User Feedback Styles */

/* Global Error Message */
.global-error {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #D73502 0%, #B91C1C 100%);
    color: white;
    padding: var(--spacing-sm);
    box-shadow: 0 4px 20px rgba(215, 53, 2, 0.3);
    display: none;
    animation: slideDown 0.3s ease-out;
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    gap: var(--spacing-sm);
}

.error-icon {
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.error-message {
    flex: 1;
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}

.error-close {
    background: none;
    border: none;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.error-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Application Status Messages */
.app-status {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9998;
    max-width: 400px;
    display: none;
    animation: slideInRight 0.3s ease-out;
}

.status-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}

.status-content.loading {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
}

.status-content.warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.status-content.error {
    background: linear-gradient(135deg, #D73502 0%, #B91C1C 100%);
    color: white;
}

.status-content.success {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: white;
}

.status-content.info {
    background: linear-gradient(135deg, var(--color-background-alt) 0%, #E5E7EB 100%);
    color: var(--color-text-primary);
    border: 1px solid var(--color-accent);
}

.status-icon {
    font-size: var(--font-size-base);
    flex-shrink: 0;
}

.status-message {
    flex: 1;
}

/* Breathing Exercise Feedback */
.breathing-feedback {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.breathing-feedback.error {
    background: rgba(215, 53, 2, 0.1);
    color: #D73502;
    border: 1px solid rgba(215, 53, 2, 0.3);
}

.breathing-feedback.info {
    background: rgba(107, 142, 127, 0.1);
    color: var(--color-accent);
    border: 1px solid rgba(107, 142, 127, 0.3);
}

/* Enhanced Form Feedback */
.form-feedback {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-feedback.success {
    background: linear-gradient(135deg, rgba(147, 189, 58, 0.1) 0%, rgba(147, 189, 58, 0.05) 100%);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.form-feedback.error {
    background: linear-gradient(135deg, rgba(215, 96, 0, 0.1) 0%, rgba(215, 96, 0, 0.05) 100%);
    color: var(--color-deep-orange);
    border: 1px solid var(--color-deep-orange);
}

.form-feedback.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #1D4ED8;
    border: 1px solid #3B82F6;
}

/* Form Submitting State */
.signup-form.submitting {
    opacity: 0.8;
    pointer-events: none;
}

.signup-form.submitting .form-group input {
    background: var(--color-background-alt);
    cursor: not-allowed;
}

/* Enhanced Error Messages for Form Fields */
.error-message {
    color: var(--color-deep-orange);
    font-size: var(--font-size-xs);
    font-family: var(--font-secondary);
    display: none;
    margin-top: var(--spacing-xs);
    font-weight: 500;
    line-height: var(--line-height-tight);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(215, 96, 0, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--color-deep-orange);
    animation: slideDown 0.2s ease-out;
}

/* Screen Reader Only Class for Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading State Enhancements */
.submit-button.loading {
    background: linear-gradient(135deg, var(--color-text-secondary) 0%, #6B7280 100%);
    cursor: wait;
    position: relative;
    overflow: hidden;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

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

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

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Mobile Responsive Adjustments for Error Handling */
@media (max-width: 768px) {
    .app-status {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .status-content {
        padding: var(--spacing-sm);
        font-size: var(--font-size-xs);
    }

    .global-error {
        padding: var(--spacing-xs);
    }

    .error-content {
        gap: var(--spacing-xs);
    }

    .error-message {
        font-size: var(--font-size-xs);
    }

    .form-feedback {
        padding: var(--spacing-sm);
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .status-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }

    .error-content {
        flex-direction: column;
        text-align: center;
    }

    .error-close {
        align-self: flex-end;
        margin-top: var(--spacing-xs);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .form-feedback.error,
    .breathing-feedback.error,
    .error-message {
        background: #FFFFFF;
        color: #000000;
        border: 2px solid var(--color-deep-orange);
    }

    .form-feedback.success,
    .breathing-feedback.info {
        background: #FFFFFF;
        color: #000000;
        border: 2px solid var(--color-green);
    }

    .global-error {
        background: var(--color-deep-orange);
        border: 2px solid #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .global-error,
    .app-status,
    .breathing-feedback,
    .form-feedback,
    .error-message {
        animation: none;
    }

    .submit-button.loading::after {
        animation: none;
    }
}

/* 
Touch-friendly enhancements for all interactive elements */
button,
input[type="submit"],
input[type="button"],
.breathing-button,
.skip-button,
.submit-button {
    /* Ensure minimum touch target size of 44x44px */
    min-width: 44px;
    min-height: 44px;
    /* Add touch feedback */
    -webkit-tap-highlight-color: rgba(107, 142, 127, 0.2);
    tap-highlight-color: rgba(107, 142, 127, 0.2);
}

/* Improve form input touch targets */
input[type="text"],
input[type="email"],
textarea,
select {
    min-height: 44px;
    /* Prevent zoom on iOS */
    font-size: 16px;
}

/* Responsive images and media */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

/* Improve focus visibility for keyboard navigation */
*:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Hide focus outline for mouse users */
.js-focus-visible *:focus:not(.focus-visible) {
    outline: none;
}

/* Responsive typography improvements */
@media (max-width: 320px) {

    /* Extra small screens */
    :root {
        --font-size-xs: 0.7rem;
        --font-size-sm: 0.8rem;
        --font-size-base: 0.9rem;
        --font-size-lg: 1rem;
        --font-size-xl: 1.1rem;
        --font-size-2xl: 1.3rem;
        --font-size-3xl: 1.6rem;
        --font-size-4xl: 2rem;
    }

    .breathing-button {
        width: 80px;
        height: 80px;
        font-size: var(--font-size-sm);
        background: var(--color-green) !important;
        color: var(--color-bg-secondary) !important;
        border-color: var(--color-green) !important;
        /* Still ensure touch-friendly size */
        min-width: 44px;
        min-height: 44px;
    }

    .main-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }

    .subtitle {
        font-size: clamp(0.8rem, 4vw, 0.95rem);
    }

    .form-group input {
        padding: var(--spacing-sm);
        font-size: 16px;
        /* Prevent zoom on iOS */
        min-height: 48px;
    }

    .submit-button {
        min-height: 52px;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }
}

/* Landscape orientation optimizations for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    #landing-view {
        padding: var(--spacing-xs);
    }

    .landing-header {
        margin-bottom: var(--spacing-xs);
    }

    .main-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-xs);
    }

    .subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }

    .breathing-section {
        padding: var(--spacing-xs) 0;
        gap: var(--spacing-xs);
    }

    .breathing-button {
        width: 80px;
        height: 80px;
        font-size: var(--font-size-base);
    }

    .skip-button {
        font-size: var(--font-size-sm);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .breathing-button {
        /* Sharper borders on high DPI displays */
        border-width: 0.5px;
    }

    .breathing-button.inhaling,
    .breathing-button.exhaling {
        border-width: 0.25px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .breathing-button.inhaling,
    .breathing-button.exhaling {
        animation: none !important;
        transform: none !important;
    }

    /* Provide alternative feedback for reduced motion */
    .breathing-button.inhaling {
        background-color: var(--color-accent);
        color: var(--color-background);
    }

    .breathing-button.exhaling {
        background-color: var(--color-primary);
        color: var(--color-background);
    }
}

/* Print styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .breathing-button,
    .skip-button,
    .submit-button {
        display: none;
    }

    .signup-form {
        display: none;
    }

    .healing-content {
        page-break-inside: avoid;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Container queries for modern browsers */
@supports (container-type: inline-size) {
    .signup-container {
        container-type: inline-size;
    }

    @container (max-width: 400px) {
        .signup-form {
            padding: var(--spacing-sm);
        }

        .form-group input {
            font-size: 16px;
        }
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading states for better UX */
.loading-state {
    cursor: wait;
    pointer-events: none;
    opacity: 0.7;
}

/* Error states */
.error-state {
    border-color: #D73502 !important;
    background-color: rgba(215, 53, 2, 0.05);
}

/* Success states */
.success-state {
    border-color: var(--color-accent) !important;
    background-color: rgba(107, 142, 127, 0.05);
}

/*
 Touch feedback styles */
.touch-active {
    transform: scale(0.98) !important;
    opacity: 0.8 !important;
    transition: transform 0.1s ease, opacity 0.1s ease !important;
}

/* Mobile landscape specific styles */
.mobile-landscape #landing-view {
    padding: var(--spacing-xs) var(--spacing-sm);
}

.mobile-landscape .breathing-section {
    padding: var(--spacing-xs) 0;
}

.mobile-landscape .breathing-button {
    width: 70px;
    height: 70px;
    font-size: var(--font-size-sm);
}

/* Orientation-specific styles */
.landscape .breathing-section {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.landscape .skip-button {
    margin-top: 0;
}

/* Dynamic viewport height support */
#landing-view {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Improved button states for better UX */
.breathing-button:active,
.submit-button:active,
.skip-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Better form field focus states for mobile */
@media (max-width: 768px) {
    .form-group input:focus {
        transform: translateY(-1px);
        box-shadow: 0 0 0 3px rgba(107, 142, 127, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
    }
}

/* Improved loading states */
.breathing-button.breathing-active {
    cursor: default;
    pointer-events: none;
}

.submit-button.loading {
    cursor: wait;
    pointer-events: none;
}

/* Better error message styling */
.app-error {
    font-family: var(--font-secondary);
    line-height: var(--line-height-normal);
}

.app-error h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.app-error button {
    background: var(--color-accent);
    color: var(--color-background);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-secondary);
    margin-top: var(--spacing-sm);
    min-height: 44px;
}

.app-error button:hover {
    background: var(--color-primary);
}

/* Improved accessibility for screen readers */
.breathing-feedback {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--color-background-alt);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    text-align: center;
    max-width: 300px;
    display: none;
}

.breathing-feedback.error {
    background: rgba(215, 53, 2, 0.1);
    color: #D73502;
    border: 1px solid #D73502;
}

.breathing-feedback.info {
    background: rgba(107, 142, 127, 0.1);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

/* Performance optimizations */
.breathing-button,
.submit-button {
    will-change: transform;
}

.breathing-button.inhaling,
.breathing-button.exhaling {
    will-change: transform, border-width;
}

/* Prevent text selection on interactive elements */
.breathing-button,
.skip-button,
.submit-button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}