/* ========================================
   RestDock Landing Page - Premium Styles
   ======================================== */

/* CSS Custom Properties */

/* CSS Custom Properties */



:root {
    /* Colors - Stripe-Style Palette */
    --color-primary: #FF5E00;
    --color-primary-dark: #CC4B00;
    --color-primary-light: #FF914D;
    --color-secondary: #7C3AED;
    /* Purple accent */
    --color-accent-blue: #3B82F6;
    --color-accent-cyan: #06B6D4;

    /* Neutrals - Rich Dark */
    --color-bg: #0A0A0F;
    --color-bg-elevated: #12121A;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-bg-card-hover: rgba(255, 255, 255, 0.06);
    --color-surface: #1A1A24;

    /* Glass Effects - Deeper */
    --glass-bg: rgba(20, 20, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    /* Text */
    --color-text: #FFFFFF;
    --color-text-secondary: #A1A1AA;
    --color-text-muted: #71717A;

    /* Borders */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);

    /* Gradients - Stripe-Style */
    --gradient-primary: linear-gradient(135deg, #FF7E33 0%, #FF5E00 100%);
    --gradient-text: linear-gradient(135deg, #FF914D 0%, #FF5E00 50%, #7C3AED 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(255, 94, 0, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(255, 94, 0, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(124, 58, 237, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(6, 182, 212, 0.08) 0px, transparent 50%);

    /* Shadows - Layered Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.5);
    --shadow-glow-orange: 0 0 60px rgba(255, 94, 0, 0.2);
    --shadow-glow-purple: 0 0 60px rgba(124, 58, 237, 0.15);

    /* Typography */
    --font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 140px;
    --container-max-width: 1200px;

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Radius - Softer */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;
}

/* Animated Gradient Mesh Keyframes */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Logo Image Styling */
.logo-image {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Global Floating Animation */
@keyframes float-y {

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

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

@keyframes float-y-small {

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

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

.float {
    animation: float-y 6s ease-in-out infinite;
}

.float-delay-1 {
    animation-delay: 1s;
}

.float-delay-2 {
    animation-delay: 2s;
}


.float-small {
    animation: float-y-small 5s ease-in-out infinite;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}



body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Stripe-style animated gradient mesh */
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    min-height: 100vh;
}

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

img,
svg {
    display: block;
}

/* ========================================
   Floating Glass Navigation
   ======================================== */


.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: var(--radius-full);

    /* Enhanced Glassmorphism */
    background: rgba(10, 10, 15, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 40px rgba(124, 58, 237, 0.05);
}

.navbar.scrolled {
    top: 16px;
    width: 95%;
    max-width: 1100px;
    background: rgba(8, 8, 12, 0.85);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(124, 58, 237, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-container {
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.nav-link:hover {
    color: var(--color-text);
}


.mobile-menu-btn {
    display: none;
    /* ... toggle styles ... */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
}

/* ========================================
   Buttons
   ======================================== */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.btn-primary {
    background: rgba(255, 94, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-primary-light);
    border: 1px solid rgba(255, 94, 0, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 94, 0, 0.25);
    border-color: rgba(255, 94, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.2);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

/* Hero CTA - larger and more prominent */
.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(255, 94, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(255, 94, 0, 0.4),
        0 0 50px rgba(255, 94, 0, 0.15);
}

.btn-xs {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: var(--color-bg-card-hover);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #FF0055;
    /* Secondary blob color for mix */
    bottom: 10%;
    left: -50px;
    opacity: 0.15;
    animation: float 25s ease-in-out infinite reverse;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 40%, transparent 80%);
}

@keyframes float {

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

    50% {
        transform: translate(40px, -40px);
    }
}


.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    max-width: 900px;
}


.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(255, 94, 0, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #A78BFA;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.version-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #34D399;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 650px;
}


.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}



/* 3D Perspective Visual - Stripe Style */
.hero-visual {
    perspective: 2500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: 20px;
}

.perspective-wrapper {
    transform: rotateX(8deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
}

.hero-visual:hover .perspective-wrapper {
    transform: rotateX(2deg) translateZ(0);
}

.app-screenshot-standalone {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.7),
        0 30px 60px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 80px rgba(124, 58, 237, 0.15),
        0 0 120px rgba(255, 94, 0, 0.1);
    display: block;
}

/* Magic Sparkles */
.sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    animation: sparkle-anim 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.s-1 {
    top: -20px;
    right: -10px;
    animation-delay: 0s;
}

.s-2 {
    bottom: 20%;
    left: -15px;
    animation-delay: 1.5s;
    animation-duration: 3s;
}

.s-3 {
    top: 30%;
    right: -25px;
    animation-delay: 2.5s;
    animation-duration: 5s;
}

@keyframes sparkle-anim {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.4) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    }
}


/* ========================================
   Bento Grid Section
   ======================================== */

.features {
    padding: var(--section-padding) 24px;
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(260px, auto));
    gap: 20px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.bento-card {
    background: rgba(15, 15, 22, 0.7);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Staggered floating effect */
.bento-card:nth-child(1) {
    transform: translateY(0);
}

.bento-card:nth-child(2) {
    transform: translateY(15px);
}

.bento-card:nth-child(3) {
    transform: translateY(-10px);
}

.bento-card:nth-child(4) {
    transform: translateY(20px);
}

.bento-card:nth-child(5) {
    transform: translateY(-5px);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bento-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.25);
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Grid Spans */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(242, 76, 0, 0.05), rgba(255, 255, 255, 0.02));
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Large Card Stats */
.bento-stats {
    display: flex;
    gap: 32px;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stat span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}



/* ========================================
   Roadmap Section - Kanban Style
   ======================================== */

.roadmap {
    padding: var(--section-padding) 24px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(255, 94, 0, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A78BFA;
    margin-bottom: 20px;
}

.roadmap-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.roadmap-column {
    background: rgba(12, 12, 18, 0.6);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.column-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.column-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Status colors */
.column-header.in-progress .column-dot {
    background: #34D399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}

.column-header.in-progress h3 {
    color: #34D399;
}

.column-header.planned .column-dot {
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
}

.column-header.planned h3 {
    color: var(--color-primary-light);
}

.column-header.exploring .column-dot {
    background: #2DD4BF;
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

.column-header.exploring h3 {
    color: #2DD4BF;
}

.column-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.item-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}



/* ========================================
   Download Section
   ======================================== */

.download {
    padding: var(--section-padding) 24px;
    /* Transparent to show body gradient mesh */
}

.download-content {
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.download-subtitle {
    margin-bottom: 64px;
    color: var(--color-text-secondary);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.platform-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-primary);
    transform: translateY(-8px);
}

.platform-icon {
    width: 64px;
    height: 64px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.platform-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.platform-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}


.download-note {
    margin-top: 32px;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.mac-troubleshoot {
    margin-top: 32px;
    text-align: center;
}

.troubleshoot-trigger {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.troubleshoot-trigger:hover {
    opacity: 1;
    color: var(--color-primary-light);
}

.mac-help-content {
    display: none;
    margin-top: 16px;
    padding: 20px;
    background: rgba(255, 94, 0, 0.05);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: var(--radius-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.mac-help-content.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mac-help-content p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.mac-help-content code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 6px;
    font-family: 'SF Mono', monospace;
    font-size: 0.8rem;
    color: #34D399;
    margin: 10px 0;
    user-select: all;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mac-help-content .small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    /* Transparent to show body gradient mesh */
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    color: var(--color-text-muted);
}

/* ========================================
   Animations & Responsive
   ======================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-content {
        margin: 0 auto;
        align-items: center;
    }

    .hero-visual {
        margin-top: 40px;
        perspective: none;
    }

    .perspective-wrapper {
        transform: none !important;
    }

    .app-window {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
    }

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

    .bento-large,
    .bento-wide,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Make the large one span full width on tablet if we want, or keep 2 col */
    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .download-grid {
        grid-template-columns: 1fr;
    }
}