/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Red Hat Display", sans-serif;
}

body {
    background: #ffffff;
    color: #1f2937;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 40px;
}

/* Wex Logo - Increased 1.25x */
.logo {
    width: 230px;  /* Increased */
    max-width: 90%;
    margin-bottom: 16px;
}

/* Title */
.header h1 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: #0284c7;
    margin-top: 6px;
}

/* Intro */
.intro {
    max-width: 720px;
    margin: 0 auto 50px auto;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.7;
    color: #475569;
}

/* Applications Grid */
.apps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.app-card {
    background: #f8fbff;
    border: 1px solid #e0f2fe;
    border-radius: 12px;
    padding: 32px 24px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 120, 255, 0.05);
}

.app-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.app-card p {
    font-size: 14px;
    color: #64748b;
}

/* Icons */
.icon {
    font-size: 28px;
    margin-bottom: 18px;
    color: #0284c7;
    transition: color 0.2s ease;
}

/* Hover */
.app-card:hover {
    border-color: #22d3ee;
    background: #f0f9ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.15);
}

.app-card:hover .icon {
    color: #0891b2;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-top: 15px;
    
}

/* Semantic Logo - Reduced to 0.75x */
.semantic-logo {
    width: 55px;  /* Reduced */
    max-width: 80%;
    margin-bottom: 8px;
}

.semantic-brand p {
    font-size: 14px;
    color: #334155;
}

copyright {
    font-size: 12px;
    color: #94a3b8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .container {
        padding: 40px 15px;
    }

    .logo {
        width: 200px;
    }

    .apps {
        gap: 18px;
    }

    .app-card {
        padding: 26px 20px;
    }
}

@media (max-width: 480px) {

    .logo {
        width: 170px;
    }

    .header h1 {
        font-size: 22px;
    }

    .app-card h2 {
        font-size: 16px;
    }

    .icon {
        font-size: 24px;
    }
}
/* Tablet */
@media (max-width: 1024px) {
    .apps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .apps {
        grid-template-columns: 1fr;
    }
}
