﻿/* ===== Landing Page Base ===== */

/*body {
    background-color: #0f1115;
    color: #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}*/

/* Container already defined inline, this refines it */
/*.container {
    line-height: 1.65;
}*/

/* ===== Headings ===== */

/*h1, h2, h3 {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}*/

/* ===== Text ===== */

/*p {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

strong {
    color: #e5e7eb;
}*/

/* ===== Sections ===== */

/*section {
    border-radius: 12px;
}*/

    /* ===== Feature / Pricing Cards ===== */

    /*section > div[style*="grid"] > div {
        background: linear-gradient( 180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01) );
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 14px;
        padding: 24px;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

        section > div[style*="grid"] > div:hover {
            transform: translateY(-2px);
            border-color: rgba(255,255,255,0.12);
        }*/

/* ===== Lists ===== */

/*ul {
    padding-left: 1.25rem;
}

li {
    margin-bottom: 0.6rem;
    color: #9ca3af;
}*/

/* ===== Links ===== */

/*a {
    color: #60a5fa;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }*/

/* ===== Footer ===== */

/*footer {
    color: #6b7280;
}

    footer a {
        color: #9ca3af;
    }

        footer a:hover {
            color: #e5e7eb;
        }*/

/* ===== Divider Line Polish ===== */

/*section h2 {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}*/

/* ===== Subtle Fade-in (no JS) ===== */

/*section {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-note {
    font-size: 0.9rem;
    color: #9aa4b2;
    margin-bottom: 1.5rem;
}

.navbar-brand sup {
    font-size: 0.55em;
    vertical-align: super;
    margin-left: 2px;
    opacity: 0.85;
}*/

/*---------------- FROM HOME/INDEX ----------------------*/
/*.page-container {
    padding: 4rem 1.5rem;
}

.landing-hero {
    text-align: center;
    margin-bottom: 5rem;
}

    .landing-hero h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .landing-hero .subtitle {
        font-size: 1.25rem;
        color: var(--bs-secondary-color);
    }

.landing-section {
    margin-bottom: 5rem;
}

.section-divider {
    border-top: 1px solid #d6dee8;
    margin: 80px 0;
}*/

/* ===============================
   Pricing Cards – Light Mode
   =============================== */

/*.pricing-card {
    background: #ffffff;
    border: 1px solid #d6dee8;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .pricing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(17, 24, 39, 0.10);
    }*/
