/* ===================================
   BOOJY NOTES - Page Styles
   Canvas starfield + teal accent
   =================================== */

/* === Hero === */
.notes-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: calc(var(--spacing-sm) + 20px);
    position: relative;
    z-index: 5;
}

.notes-hero .container {
    position: relative;
    z-index: 2;
}

.notes-hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.notes-hero-logo {
    height: 4.55rem;
    width: auto;
    position: relative;
    left: -2px;
}

.notes-hero-product {
    height: 3.086rem;
    width: auto;
    position: relative;
    top: -5px;
    left: 8px;
}

.notes-hero-glow {
    --glow-opacity: 0.75;
    --glow-width: 1400px;
    --glow-height: 994px;
    --glow-color: 218, 240, 244;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 18px));
    width: var(--glow-width);
    height: var(--glow-height);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    opacity: var(--glow-opacity);
    background: radial-gradient(ellipse,
        rgba(var(--glow-color), 0.25) 0%,
        rgba(var(--glow-color), 0.12) 40%,
        transparent 70%);
    view-transition-name: hero-glow;
}

.notes-tagline {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.5;
}

.notes-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
    position: relative;
    z-index: 2;
}

/* Notes web CTA — teal fill */
.btn-web-notes {
    background: var(--color-notes);
    color: #0F1119;
}
.btn-web-notes:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

/* === Screenshot === */
.notes-screenshot-section {
    padding: 10px 0 var(--spacing-lg);
    position: relative;
    z-index: 4;
}

.notes-screenshot-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.notes-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* === Features Grid === */
.notes-features-section {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.notes-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.notes-feature-card {
    background: var(--notes-card-bg, #040412);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-align: center;
}


.notes-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(213, 229, 170, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.notes-feature-icon {
    display: block;
    margin: 0 auto var(--spacing-sm);
    width: 28px;
    height: 28px;
    color: var(--color-notes);
}

.notes-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.notes-feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* === Cloud Card Overrides === */
.notes-cloud-cta {
    background: rgba(255, 255, 255, 0.85);
    color: #0F1119;
}

.notes-cloud-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

/* === Responsive === */
@media (max-width: 768px) {
    .notes-hero {
        padding-top: 90px;
    }

    .notes-hero-logo {
        height: 3.575rem;
    }

    .notes-hero-product {
        height: 2.15rem;
    }

    .notes-tagline {
        font-size: 1.15rem;
    }

    .notes-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .notes-hero-title {
        flex-direction: column;
    }

    .notes-hero-logo {
        height: 2.925rem;
    }

    .notes-hero-product {
        height: 1.8rem;
    }

    .notes-hero-glow {
        --glow-width: 300px;
        --glow-height: 200px;
    }

    .notes-tagline {
        font-size: 1rem;
    }

    .notes-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
