/* 2026 Organic Aesthetic Theme */
:root {
    --bg: #F9F8F1;
    /* Eggshell White */
    --text-main: #3C2F2F;
    /* Dark Brown */
    --text-muted: #6D5B5B;
    /* Medium Brown */
    --accent-green: #7A9460;
    /* Light Natural Green */
    --border: #E5E0D5;
    /* Beige Border */
    --link-hover: #2D3B2D;
    /* Forest Green */

    /* Site Specific Palette per Marketing Specs */
    --luman-font: #D0FF94;
    /* Lime Natural Green */
    --luman-box: #3E322E;
    /* Dark Brown Ash */

    --gusto-font: #2D3B2D;
    /* Forest Green */
    --gusto-box: #D2C7BA;
    /* Light Beige Ash */

    --aie-font: #A8B58D;
    /* Light Natural Green */
    --aie-box: #5D4F46;
    /* Medium Dark Brown Ash */
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
}

/* Nav Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    background: transparent;
}

.nav-logo {
    font-size: 2rem;
    /* Large enough for importance */
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-main);
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent-green);
    font-weight: 400;
}

.nav-right a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 30px;
    font-size: 0.9rem;
}

.nav-right a:hover {
    text-decoration: underline;
    color: var(--link-hover);
}

/* Dashboard Layout */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 100px;
}

.hero-section {
    padding: 60px 0;
    text-align: left;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-blurb {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin-top: 20px;
}

/* Grid & Cards */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.software-card {
    padding: 45px;
    border-radius: 30px;
    /* Organic roundness */
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.card-luman {
    background-color: var(--luman-box);
    color: var(--luman-font);
}

.card-gusto {
    background-color: var(--gusto-box);
    color: var(--gusto-font);
}

.card-aie {
    background-color: var(--aie-box);
    color: var(--aie-font);
}

.software-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.software-card p {
    color: #F9F8F1;
    opacity: 0.85;
    margin-bottom: 2rem;
}

/* Site Specific Link Colors to ensure readability */
.card-gusto p {
    color: var(--text-main);
}

.card-links {
    margin-top: auto;
    display: flex;
    gap: 25px;
}

.card-links a {
    color: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.card-links a:hover {
    text-decoration: underline;
}

/* Contact Form */
.form-container {
    background: #FFF;
    padding: 80px;
    border-radius: 40px;
    margin-top: 100px;
    border: 1px solid var(--border);
}

.form-blurb {
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

input,
textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--bg);
    box-sizing: border-box;
}

.action-btn {
    background: var(--text-main);
    color: #FFF;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.action-btn:hover {
    background: var(--link-hover);
}

/* Footer */
footer {
    background: #EAE5DB;
    padding: 100px 5%;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-info {
    margin: 25px 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.social-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-green);
}

.footer-legal {
    margin-top: 50px;
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
}