body {
    background: #f0f2f5;
    min-height: 100vh;
}
/* Match dashboard dark navbar (layout.html) — plain nav-links, no outlined buttons */
.landing-navbar {
    background-color: #2D378C !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.landing-navbar .navbar-brand img {
    height: 42px;
    width: auto;
    max-height: 42px;
    background: #fff;
    border-radius: 6px;
    padding: 3px;
}
.landing-main {
    padding: 1.5rem 1rem 3rem;
}
/* Shared column for hero + tiles so logo matches combined tile width */
.landing-content {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.landing-hero {
    margin-bottom: 1.5rem;
}
.landing-full-logo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/* Chooser section is secondary to the full logo */
.landing-chooser-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0;
}
.app-tile {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    padding: 1.15rem 1.1rem;
    min-height: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    height: 100%;
}
.app-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 55, 140, 0.14);
    border-color: #088e7c;
    color: inherit;
}
.app-tile .tile-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 142, 124, 0.12);
    color: #088e7c;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}
.app-tile h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2D378C;
    margin-bottom: 0.35rem;
}
.app-tile p {
    font-size: 0.85rem;
    line-height: 1.4;
}
.app-tile .tile-cta {
    color: #088e7c;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}
.app-tile-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
}
.app-tile-disabled .tile-icon {
    background: #e9ecef;
    color: #6c757d;
}
.app-tile-disabled h2 {
    color: #6c757d;
}
.landing-navbar .landing-logout {
    background: none;
    border: none;
    cursor: pointer;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.85);
}
.landing-navbar .landing-logout:hover,
.landing-navbar .landing-logout:focus {
    color: #fff;
}
.coming-soon-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6c757d;
    background: #e9ecef;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    margin-top: 0.65rem;
}
