:root {
    /* Color System - From Shared Design Tokens */
    --color-primary: #1F2937;
    --color-primary-light: #38BDF8;
    --color-primary-dark: #0284C7;
    --color-blue: #3B82F6;
    --color-purple: #8B5CF6;
    --color-pink: #EC4899;
    --color-orange: #F97316;
    --color-yellow: #F59E0B;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;
    --color-bg: #F7F2E9;
    --color-bg-secondary: #F8FAFC;
    --color-bg-tertiary: #F1F5F9;
    --color-bg-white: #FFFFFF;
    --color-text: #1F2937;
    --color-text-secondary: #6B7280;
    --color-text-tertiary: #9CA3AF;
    --color-text-inverse: #FFFFFF;
    --color-border: #D1D5DB;
    --color-border-light: #E5E7EB;
    --color-border-dark: #9CA3AF;

    /* Gradients - Using RN app's profileButton colors with 80% opacity */
    --gradient-rainbow: linear-gradient(135deg, #AA44FF80 0%, #FF44AA80 25%, #0088FF80 50%, #00CC6680 75%, #FFDD0080 100%);
    --gradient-cta: var(--gradient-rainbow);
    --gradient-secondary: var(--gradient-rainbow);

    /* Additional Colors */
    --color-bg-alt: #F8FAFC;

    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

    /* Typography */
    --font-primary: Nunito, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: Fredoka, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-2xl: 24px;
    --spacing-3xl: 32px;
    --spacing-4xl: 40px;
    --spacing-5xl: 48px;
    --spacing-6xl: 64px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-3xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast)
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: 0 0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    contain: layout style
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-base)
}

.navbar.scrolled {
    box-shadow: var(--shadow-md)
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    height: 64px
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text)
}

.logo-icon {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite
}

@keyframes sparkle {

    0%,
    100% {
        transform: rotate(0) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(1.1)
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg)
}

.nav-links a:not(.btn-download) {
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.nav-links a:not(.btn-download):hover {
    color: var(--color-primary)
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-2xl);
    background: var(--color-text);
    color: var(--color-text-inverse) !important;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .2);
    transition: var(--transition-base);
    text-shadow: none;
    font-size: 1rem;
    min-height: 48px;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm);
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-fast)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999
}

.mobile-menu.active {
    display: flex
}

.mobile-menu a {
    padding: var(--spacing-md);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 1.0625rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast)
}

.mobile-menu a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary)
}

@media (max-width:768px) {
    .nav-links {
        display: flex;
        gap: var(--spacing-sm);
        margin-left: auto
    }

    .nav-links a:not(.btn-download) {
        display: none
    }

    .btn-download {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.875rem;
        min-height: 40px;
        white-space: nowrap
    }

    .mobile-menu-btn {
        display: none
    }
}

.hero {
    position: relative;
    padding: calc(64px + var(--spacing-xl)) 0 var(--spacing-3xl);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    contain: layout style paint;
    width: 100%
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 25%, var(--color-pink) 50%, var(--color-orange) 75%, var(--color-yellow) 100%);
    opacity: 0.05;
    z-index: -1
}







.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center
}

.hero-text {
    z-index: 1
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-text)
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 25%, var(--color-pink) 50%, var(--color-orange) 75%, var(--color-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8
}

.hero-cta {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-2xl);
    min-height: 48px;
    min-width: 120px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-text-inverse);
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .2);
    text-shadow: none
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.btn-secondary {
    background: #fff;
    color: var(--color-text);
    border: 2px solid var(--color-border)
}

.learn-more-link {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    position: relative;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: .25rem
}

.learn-more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease
}

.learn-more-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px)
}

.learn-more-link:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary)
}

.hero-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm)
}

.badge-icon {
    font-size: 1.25rem
}

.badge-text {
    font-size: .875rem;
    font-weight: 500;
    color: var(--color-text-light)
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center
}

.phone-mockup {
    position: relative;
    animation: float-phone 6s ease-in-out infinite
}

@keyframes float-phone {

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

    50% {
        transform: translateY(-20px)
    }
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1e293b 0, #334155 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1e293b;
    border-radius: 0 0 20px 20px;
    z-index: 2
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6f4fe 0, #fff3e6 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md)
}

.coloring-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    width: 100%;
    contain: layout style;
    min-height: 300px
}

.preview-item {
    aspect-ratio: 2/3;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    overflow: hidden;
    border: none;
    outline: none
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
    display: block
}

.preview-item:nth-child(2) {
    animation-delay: .5s
}

.preview-item:nth-child(3) {
    animation-delay: 1s;
    grid-column: span 2
}

.preview-item.preview-1,
.preview-item.preview-2 {
    transform: scale(0.85);
    margin-top: 8px
}

.preview-item.preview-3 {
    grid-column: 1/-1;
    max-width: 80%;
    margin: 0 auto
}

.phone-print-btn {
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--color-text);
    color: var(--color-text-inverse);
    border: none;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    width: 100%;
    max-width: 200px
}

.phone-print-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

@keyframes preview-bounce {

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

    50% {
        transform: scale(1.05)
    }
}

@media (max-width:968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-title {
        font-size: 2.5rem
    }

    .hero-cta {
        justify-content: center
    }

    .hero-badges {
        justify-content: center
    }

    .phone-frame {
        width: 250px;
        height: 500px
    }
}

@media (max-width:640px) {
    .hero {
        padding: calc(64px + var(--spacing-2xl)) 0 var(--spacing-xl)
    }

    html {
        scroll-padding-top: 64px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-top: 0
    }

    .hero-description {
        font-size: 1.0625rem;
        line-height: 1.7
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center
    }

    .btn {
        width: 100%;
        justify-content: center;
        font-size: 1.0625rem
    }

    .learn-more-link {
        text-align: center;
        width: 100%;
        display: block;
        justify-content: center
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-brand .logo {
        margin: var(--spacing-2xl) 0
    }

    .badge-text {
        font-size: .9375rem
    }

    .container {
        padding: 0 var(--spacing-md)
    }

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

    .feature-card {
        text-align: center;
        align-items: center
    }

    .feature-title {
        font-size: 1.375rem
    }

    .feature-description {
        font-size: 1rem;
        line-height: 1.7
    }

    .download-buttons {
        width: 100%;
        align-items: center
    }

    .store-badge-img {
        height: 50px
    }

    .android-badge {
        height: 50px
    }
}

.features {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-warm)
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl)
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text)
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light)
}

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

.feature-card {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid transparent;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary)
}

.feature-icon {
    margin-bottom: var(--spacing-md)
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text)
}

.feature-description {
    color: var(--color-text-light);
    line-height: 1.7
}

@media (max-width:640px) {
    .features-grid {
        grid-template-columns: 1fr
    }

    .section-title {
        font-size: 2rem
    }
}

.how-it-works {
    padding: var(--spacing-3xl) 0
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto
}

.step {
    flex: 1;
    text-align: center
}

.step-number {
    width: 64px;
    height: 64px;
    background: #E6F4FE;
    color: #4A90E2;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg)
    }

    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-xl)
    }
}

.step:nth-child(2) .step-number {
    animation-delay: .5s;
    background: #E6F4FE
}

.step:nth-child(4) .step-number {
    animation-delay: 1s;
    background: #E6F4FE
}

.step-connector {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0, var(--color-secondary) 100%);
    margin-top: 32px;
    position: relative;
    border-radius: 2px
}

.step-connector::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-secondary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent
}

.step-connector::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text)
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.7
}

@media (max-width:768px) {
    .steps {
        flex-direction: column;
        align-items: center
    }

    .step-connector {
        width: 3px;
        height: 40px;
        margin: var(--spacing-md) 0;
        background: linear-gradient(180deg, var(--color-primary) 0, var(--color-secondary) 100%);
        border-radius: 2px
    }

    .step-connector::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: 8px solid var(--color-secondary);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent
    }

    .step-connector::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--color-primary);
        border-radius: 50%
    }
}

.gallery {
    padding: 4rem 0;
    background: var(--color-bg-alt)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0
}

.gallery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all .3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 1.5rem
}

.gallery-card:hover {
    transform: translateY(-4px)
}

.gallery-card-image-container {
    width: 100%;
    aspect-ratio: 1/1.414;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-bottom: 1rem
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.gallery-card-content {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.gallery-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.gallery-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .875rem;
    color: var(--color-text-light)
}

.gallery-card-country {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.25rem
}

.gallery-card-stat {
    display: flex;
    align-items: center;
    gap: .25rem
}

.gallery-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 20px;
    aspect-ratio: 1/1.414
}

@keyframes loading {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem
}

.gallery-cta .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-secondary);
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(255, 139, 148, .4);
    transition: all .3s ease
}

.gallery-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 139, 148, .5)
}

.about {
    padding: 4rem 0;
    background: var(--color-bg)
}

.about-content {
    margin-top: 2rem
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.philosophy-item {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.philosophy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform .3s ease
}

.philosophy-item:hover .philosophy-icon {
    transform: scale(1.1) rotate(5deg)
}

.philosophy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem
}

.philosophy-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary)
}

.about-cta {
    text-align: center;
    margin-top: 3rem
}

.about-cta .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(255, 139, 148, .4);
    transition: all .3s ease
}

.about-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 139, 148, .5)
}

.download {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #d4a574 0, #4a6741 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .1
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1
}

.download-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md)
}

.download-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    opacity: .9;
    line-height: 1.8
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start
}

.store-badge-link {
    display: inline-block;
    transition: var(--transition-base);
    -webkit-tap-highlight-color: transparent
}

.store-badge-link:hover {
    transform: translateY(-4px);
    opacity: .9
}

.store-badge-img {
    height: 60px;
    width: auto;
    display: block
}

.store-badge-container {
    position: relative;
    display: inline-block;
    cursor: not-allowed
}

.android-badge {
    height: 60px;
    width: auto;
    display: block;
    opacity: .6
}

.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    padding: .25rem .75rem;
    background: var(--gradient-secondary);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(255, 139, 148, .4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    z-index: 1
}

.download-note {
    font-size: .875rem;
    opacity: .8
}

.download-visual {
    position: relative;
    height: 400px
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%
}

.floating-coloring-page {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    animation: float-coloring-page 4s ease-in-out infinite;
    background: #fff;
    border: 3px solid var(--color-primary)
}

.floating-coloring-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.floating-coloring-page:hover img {
    transform: scale(1.05)
}

.coloring-page-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    transform: rotate(-5deg)
}

.coloring-page-2 {
    top: 25%;
    right: 20%;
    animation-delay: .8s;
    transform: rotate(8deg)
}

.coloring-page-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 1.6s;
    transform: rotate(-3deg)
}

@keyframes float-coloring-page {

    0%,
    100% {
        transform: translateY(0) rotate(var(--initial-rotation, 0deg))
    }

    50% {
        transform: translateY(-15px) rotate(var(--initial-rotation, 0deg))
    }
}

.coloring-page-1 {
    --initial-rotation: -5deg
}

.coloring-page-2 {
    --initial-rotation: 8deg
}

.coloring-page-3 {
    --initial-rotation: -3deg
}

@media (max-width:968px) {
    .download-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .download-title {
        font-size: 2rem
    }

    .download-buttons {
        align-items: center
    }

    .download-visual {
        height: 300px
    }

    .floating-coloring-page {
        width: 80px;
        height: 80px;
        border-radius: 12px
    }

    .coloring-page-1 {
        top: 20%;
        left: 10%
    }

    .coloring-page-2 {
        top: 30%;
        right: 15%
    }

    .coloring-page-3 {
        bottom: 20%;
        left: 15%
    }
}

.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: var(--color-text);
    color: #fff
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl)
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl)
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: var(--spacing-sm)
}

.footer-tagline {
    opacity: .8;
    font-size: .875rem
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm)
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs)
}

.footer-column a {
    opacity: .8;
    font-size: .9375rem;
    padding: var(--spacing-xs) 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast)
}

.footer-column a:hover {
    opacity: 1;
    color: var(--color-primary)
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    opacity: .6;
    font-size: .875rem
}

@media (max-width:768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg)
    }

    .footer-column {
        align-items: center
    }
}

.fade-in {
    animation: fadeIn .6s ease-in-out forwards;
    opacity: 1 !important
}

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

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

.slide-in-left {
    animation: slideInLeft .6s ease-in-out forwards;
    opacity: 1 !important
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }

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

.slide-in-right {
    animation: slideInRight .6s ease-in-out forwards;
    opacity: 1 !important
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

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

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important
    }
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px
}