:root {
    --primary-green: #28a745;
    /* Vibrant Green matching reference */
    --hover-green: #218838;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --overlay-color: rgba(10, 20, 30, 0.6);
    /* Dark Blue/Grey overlay */
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-white);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--overlay-color)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevent scrolling for full screen effect */
}

/* Header */
.header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

/* Language Widget */
.language-widget {
    position: absolute;
    top: 25px;
    right: 5%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center pill and hint */
    gap: 4px;
    /* Minimal gap */
}

/* Status Pill - The CTA */
.status-pill {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    font-weight: 700;
    color: #bbb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.status-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lang-option {
    transition: all 0.3s;
    cursor: pointer;
    /* Clickable */
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-option:hover {
    color: #666;
}

.lang-option.active {
    color: #333;
    /* Dark/Black for active */
    font-weight: 800;
}

.divider {
    color: #ddd;
    font-weight: 300;
    font-size: 1.2rem;
}

/* Small Hint Text */
.lang-hint {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease;
}

/* Action Grid */
.action-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    /* Increased max-width to allow side-by-side */
}

.cta-button {
    background-color: var(--primary-green);
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button.secondary-cta {
    background-color: rgba(17, 24, 39, 0.75);
    /* Modern Dark Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.cta-button.secondary-cta:hover {
    background-color: rgba(17, 24, 39, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button span {
    text-align: left;
    flex: unset;
}

.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    stroke: currentColor;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

/* Logo Box */
.logo-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Typography */
.hero-text {
    margin-bottom: 1.5rem;
}

.brand-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--primary-green);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.powered-by {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .logo-box {
        width: 100px;
        height: 100px;
        padding: 1.5rem;
    }

    .action-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
        margin-top: 2rem;
    }

    .cta-button {
        width: 100%;
        min-width: unset;
        padding: 1rem;
    }
}