:root {
    --bg-dark: #07090e;
    --bg-card: rgba(18, 24, 38, 0.30);
    --border-card: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(245, 158, 11, 0.3);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-amber: #f59e0b;
    --accent-gold: #fbbf24;
    --accent-warm: #d97706;
}

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

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 3rem 1.5rem;
}

/* Glow Wrapper (Prevents horizontal overflow) */
.glow-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Ambient Yellow Glow Orbs */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    animation: pulseOrb 10s ease-in-out infinite alternate;
}

.glow-1 {
    width: 550px;
    height: 550px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.08));
}

.glow-2 {
    width: 450px;
    height: 450px;
    bottom: -100px;
    right: 5%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), rgba(234, 179, 8, 0.05));
}

@keyframes pulseOrb {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.15) translate(10px, 15px);
        opacity: 1;
    }
}

/* Container */
.main-container {
    position: relative;
    z-index: 10;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Brand Logo (Unboxed, Natural Colors) */
.brand-logo {
    width: auto;
    max-width: 20rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.03);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-amber);
    box-shadow: 0 0 12px var(--accent-amber);
    animation: blinkDot 2s infinite;
}

@keyframes blinkDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* Typography */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

.gradient-text {
    background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.65;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
}

/* Professional Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin-top: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 7px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.feature-icon-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.feature-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f3f4f6;
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.45;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    body {
        padding: 2rem 1rem;
    }

    .main-container {
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .brand-logo {
        max-width: 14rem;
        margin: 0 auto;
        align-self: center;
    }

    .hero-title {
        font-size: 1.85rem;
        text-align: center;
        width: 100%;
    }

    .hero-description {
        font-size: 0.98rem;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .status-badge {
        align-self: center;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.2rem;
    }
}