* {
    --app-green: rgb(111, 246, 149);
    --app-yellow: rgb(243, 231, 7);
    --app-blue-beta: #278cda;
    --app-blue: #3358e6;
    --app-bg: #1f1f1f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
}

html{
    scroll-behavior:smooth;
}

.app-green{
    color:var(--app-green);
}
.app-yellow {
    color: rgb(243, 231, 7);
}

.app-blue-alpha{
    color:rgba(0,0,255);
}

.app-blue-beta {
    color: #278cda;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #1f1f1f;
    position:relative;
    overflow-x:hidden;
}

body {
    color: #f3f5fb;
}

/* Gradient text effect for hero green text */
.gradient-text {
    background: linear-gradient(135deg, var(--app-green) 0%, #40e0d0 50%, var(--app-green) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShift 4s ease-in-out infinite;
}

@keyframes gradientTextShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* CTA Buttons */
.btn-cta-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--app-blue) 0%, #6a82fb 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(51, 88, 230, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(51, 88, 230, 0.45);
    color: #fff;
}

.btn-cta-primary:hover::after {
    transform: translateX(100%);
}

.btn-cta-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-outline:hover {
    color: #fff;
    border-color: var(--app-green);
    background: rgba(111, 246, 149, 0.08);
    box-shadow: 0 4px 20px rgba(111, 246, 149, 0.15);
    transform: translateY(-2px);
}

.hero-section {
    padding: 1.5rem 0 2rem;
}

.hero-tile {
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-title {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    max-width: 720px;
}

.hero-quote {
    line-height: 1.7;
}

.hero-buttons {
    flex-wrap: wrap;
}

.squada-one-regular {
    font-family: "Squada One", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size:3rem;
}

.michroma-regular {
    font-family: "Michroma", sans-serif;
    font-style: normal;
    font-size: 3rem;
}

/* Animated background orbs */
.dot {
    height: 800px;
    width: 800px;
    position: absolute;
    background-image: radial-gradient(closest-side, rgba(51, 88, 230, 0.2), transparent);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.dot-top {
    top: 200px;
    left: 40px;
}

.dot-bottom {
    bottom: 200px;
    right: -100px;
}

#home {
    min-height: calc(100dvh - 64px);
}

section {
    scroll-margin-top: 64px
}

.bg-yellow{
    background-color:yellow;
}

.main-section{
    padding: 80px 0px;
}

.btn-outline-light:hover, .btn-outline-light:focus {
    color: #111 !important;
    background: #fff !important;
    border-color: #fff !important;
}

img{
    border-radius:5px;
}

@media (max-width: 768px) {
    #home {
        min-height: auto;
    }

    .main-section {
        padding: 56px 0;
    }

    .hero-tile {
        width: 100% !important;
        height: auto !important;
        min-height: auto;
        max-width: 100vw;
        padding: 4.75rem 1rem 2rem !important;
        border-radius: 0 !important;
    }

    .hero-title,
    .hero-tile h1,
    .hero-tile .display-2 {
        font-size: clamp(2.1rem, 10vw, 3rem) !important;
        line-height: 1.08;
    }

    .hero-subtitle,
    .hero-tile p,
    .hero-tile blockquote {
        font-size: 1rem !important;
    }

    .hero-quote {
        padding: 1rem !important;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.9rem !important;
    }

    .hero-tile .btn {
        font-size: 1rem !important;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 0.9rem 1.25rem !important;
    }

    .dot {
        width: 420px;
        height: 420px;
        filter: blur(28px);
    }

    .monday-app-tile,
    .app-card {
        padding: 1.5rem !important;
        border-radius: 18px;
    }

    .main-section + .main-section::before {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .main-section {
        padding: 44px 0;
    }

    .hero-section {
        padding-top: 0.75rem;
    }

    .hero-tile {
        padding: 4.25rem 0.85rem 1.5rem !important;
        border-radius: 0 !important;
    }

    .hero-title .gradient-text {
        display: block;
        margin-top: 0.25rem;
    }

    .hero-tile .btn {
        max-width: none;
    }
}

/* Glassmorphism card base */
.monday-app-tile {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: rgb(177, 177, 177);
}
.monday-app-tile:hover, .monday-app-tile:focus {
    transform: scale(1.035) translateY(-4px);
    box-shadow: 0 8px 40px rgba(51, 88, 230, 0.2), 0 0 60px rgba(51, 88, 230, 0.05);
    border-color: rgba(51, 88, 230, 0.4);
    cursor: pointer;
}

/* Modern download button styles for local and web links */
.local and web links-download-btn {
    display: inline-block;
    background: linear-gradient(90deg, #3358e6 0%, #6a82fb 100%);
    color: #fff !important;
    border: none;
    border-radius: 2.2rem;
    padding: 0.5rem 1.0rem;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(51,88,230,0.10);
    transition: background 0.18s, transform 0.14s, box-shadow 0.18s;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
    text-decoration:none;
}
.local and web links-download-btn:hover, .local and web links-download-btn:focus {
    background: linear-gradient(90deg, #223a80 0%, #3358e6 100%);
    color: #fff !important;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 24px rgba(51,88,230,0.18);
    text-decoration: none;
}
.local and web links-download-btn.secondary {
    background: #fff;
    color: #3358e6 !important;
    border: 2px solid #3358e6;
    box-shadow: none;
    padding: 0.7rem 1.5rem;
}
.local and web links-download-btn.secondary:hover, .local and web links-download-btn.secondary:focus {
    background: #f4f7fa;
    color: #223a80 !important;
    border-color: #223a80;
}

.local and web links-section {
    margin-bottom: 4.5rem !important;
    padding-bottom: 0.5rem;
    scroll-margin-top: 64px
}

/* Glassmorphism app card */
.app-card{
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color:lightgray;
    padding:30px;
    border-radius:20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.app-card:hover {
    border-color: rgba(51, 88, 230, 0.25);
    box-shadow: 0 4px 30px rgba(51, 88, 230, 0.08);
}

.app-card a{
    color:white;
}

.app-link{
    color:#75B6E7 !important;
    text-decoration:none;
    transition: color 0.2s;
}

    .app-link:hover {
        text-decoration: underline;
        color: #278cda;
    }

    th, td{
        text-align:center;
    }

.app-topic {
    color: var(--app-green);
}

.youtube-screen{
    max-height:100dvh;
}


.download-btn {
    width:250px;
    font-size:14px;
    padding: 5px 10px;
    margin-bottom:5px;
    border-radius:5px;
}

.download-link{
    text-decoration:none;
    width:fit-content;
}

.windows-download {
    background-color: #60CDFF;
    background-image: linear-gradient(to bottom, #81D5FC, #39B3FA);
    border: 1px solid #005f75;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.macos-download {
    background-color: #A2AAAD;
    background-image: linear-gradient(to bottom, #FFFFFF, #a2aaad);
    border: 1px solid #7c8585;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Section dividers — subtle gradient lines */
.main-section + .main-section::before {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--app-blue), transparent);
    margin: 0 auto 60px;
    border-radius: 2px;
}

#process.main-section::before {
    content: none;
    display: none;
}
