/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.nav-star {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.nav-star i {
    color: #fbbf24;
}

.nav-star:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 24px 80px 100px;
    position: relative;
    overflow: hidden;
}

.hero>.hero-bg {
    max-width: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 30%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-2%, 2%);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

/* Desktop Preview */
.desktop-preview {
    max-width: 550px;
    width: 100%;
}

/* Monitor Container */
.monitor-container {
    position: relative;
    width: 100%;
    aspect-ratio: 600 / 450;
    transition: var(--transition);
}

.monitor-container:hover {
    transform: translateY(-8px);
}

/* Monitor Content - GIF area */
.monitor-content {
    position: absolute;
    top: 4.5%;
    left: 3%;
    width: 94%;
    height: 69%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.demo-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SVG Monitor Frame */
.monitor-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Frame Lines - Main rectangle */
.frame-line {
    fill: none;
    stroke: rgba(139, 92, 246, 0.8);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.frame-left {
    stroke-dasharray: 960;
    stroke-dashoffset: 960;
    animation: drawFrameLine 1.5s ease-out 0.2s forwards;
}

.frame-right {
    stroke-dasharray: 960;
    stroke-dashoffset: 960;
    animation: drawFrameLine 1.5s ease-out 0.2s forwards;
}

@keyframes drawFrameLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Stand Lines */
.stand-line {
    fill: none;
    stroke: rgba(139, 92, 246, 0.6);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.stand-left {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawStand 0.8s ease-out 1.7s forwards;
}

.stand-right {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawStand 0.8s ease-out 1.7s forwards;
}

@keyframes drawStand {
    to {
        stroke-dashoffset: 0;
    }
}

/* Stand Base */
.stand-base {
    stroke: rgba(139, 92, 246, 0.5);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.4));
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: drawBase 0.5s ease-out 2.5s forwards;
}

@keyframes drawBase {
    to {
        stroke-dashoffset: 0;
    }
}

/* Date Widget */
.date-widget {
    position: absolute;
    bottom: 80%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
    color: #1a1a1a;
    text-shadow: none;
}

.widget-time {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.widget-date {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
    color: #333;
}

.preview-label {
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}




.mockup-controls {
    display: flex;
    gap: 8px;
}

.mockup-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-controls .dot.close {
    background: #ff5f57;
}

.mockup-controls .dot.minimize {
    background: #ffbd2e;
}

.mockup-controls .dot.maximize {
    background: #28ca41;
}

.mockup-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.mockup-controls-placeholder {
    width: 52px;
}

/* Illustrated App Mock */
.mockup-body {
    display: flex;
    height: 320px;
}

.mock-sidebar {
    width: 180px;
    padding: 16px;
    border-right: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.mock-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mock-logo-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 6px;
}

.mock-logo span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.mock-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.mock-tab.active {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
}

.tab-icon {
    font-size: 0.9rem;
}

.mock-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.mock-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.mock-toggle {
    width: 40px;
    height: 22px;
    background: var(--border-color);
    border-radius: 11px;
    position: relative;
}

.mock-toggle::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    background: var(--text-muted);
    border-radius: 50%;
}

.mock-interval {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mock-interval>span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.mock-time-inputs {
    display: flex;
    gap: 8px;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.time-box.active {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.time-box small {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    margin-top: 2px;
    opacity: 0.7;
}

.mock-wallpapers {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.mock-wallpapers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.mock-add-btn {
    width: 24px;
    height: 24px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-size: 1rem;
}

.mock-wallpaper-grid {
    display: flex;
    gap: 10px;
}

.mock-wallpaper {
    flex: 1;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.4) 0%,
            rgba(59, 130, 246, 0.4) 50%,
            rgba(236, 72, 153, 0.4) 100%);
    border-radius: 8px;
    animation: shimmer 3s infinite;
}

.mock-wallpaper:nth-child(2) {
    animation-delay: 0.5s;
}

.mock-wallpaper:nth-child(3) {
    animation-delay: 1s;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}


/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-purple);
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ===== Features Section ===== */
.features {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== Platforms Section ===== */
.platforms {
    padding: 120px 24px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.platform-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.platform-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.platform-icon {
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-version {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.platform-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-status.available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.platform-status.coming-soon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.platform-card.coming-soon {
    opacity: 0.6;
}

.platform-card.available {
    border-color: rgba(34, 197, 94, 0.3);
}

.platform-card.available:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

/* ===== Download Section ===== */
.download {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.download-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.download-centered .section-header {
    margin-bottom: 40px;
}

.download-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    border-radius: 16px;
    transition: var(--transition);
    margin-bottom: 24px;
}

.download-hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.download-hero-btn i {
    color: white;
}

.download-hero-text {
    text-align: left;
}

.download-hero-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.download-hero-size {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.github-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.gh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.gh-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: rgba(139, 92, 246, 0.3);
}

.gh-btn.star i {
    color: #fbbf24;
}

.gh-btn.sponsor {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.gh-btn.sponsor i {
    color: #ec4899;
}

.gh-btn.sponsor:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.5);
}



.download-info .section-title {
    text-align: left;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--bg-card-hover);
    transform: translateX(8px);
}

.download-btn i {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.download-btn-text {
    display: flex;
    flex-direction: column;
}

.download-btn-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.download-btn-platform {
    font-size: 1.125rem;
    font-weight: 600;
}

.download-btn.primary {
    background: var(--gradient-primary);
    border-color: transparent;
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.download-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.github-stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    min-width: 320px;
}

.stats-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.github-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.github-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.github-badge:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
}

.github-badge i {
    color: #fbbf24;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.cta-btn.contribute {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.cta-btn.contribute:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.cta-btn.sponsor {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.cta-btn.sponsor:hover {
    background: rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.5);
}

/* ===== Footer ===== */
.footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    padding: 6px 0;
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--accent-purple);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Mobile Styles ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .app-window {
        width: 100%;
        max-width: 450px;
        transform: none;
    }

    .download-content {
        grid-template-columns: 1fr;
    }

    .download-requirements {
        min-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .window-content {
        height: 220px;
    }

    .preview-sidebar {
        width: 90px;
        padding: 12px;
    }

    .sidebar-item {
        font-size: 0.65rem;
        padding: 8px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}