html {
    scroll-behavior: smooth;
}

body[data-page="landing"] {
    margin: 0;
    padding: 0;
    background-color: #0a0c10;
    color: #e6edf3;
    font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
    line-height: 1.6;
}

[data-element="container"] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

[data-component="navbar"] {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

[data-element="navbar-flex"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-element="brand"] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

[data-element="logo-img"] {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    object-fit: cover;
}

[data-element="nav-links"] a {
    color: #8b949e;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

[data-element="nav-links"] a:hover {
    color: #4ade80;
}

[data-section="hero"] {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.15) 0%, rgba(10, 12, 16, 0) 50%);
}

[data-element="title"] {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin: 0;
    font-weight: 800;
    background: linear-gradient(90deg, #4ade80 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

[data-element="subtitle"] {
    font-size: 1.2rem;
    color: #8b949e;
    max-width: 600px;
    margin: 20px auto;
}

[data-element="bundle-tag"] {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #4ade80;
    margin-bottom: 30px;
}

[data-element="hero-image-wrap"] {
    margin-top: 40px;
    position: relative;
}

[data-element="hero-image-wrap"] img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-section="features"] {
    padding: 100px 0;
}

[data-component="grid"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

[data-element="card"] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

[data-element="card"]:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

[data-element="card"] h3 {
    margin-top: 0;
    color: #4ade80;
    font-size: 1.3rem;
}

[data-element="card"] p {
    color: #8b949e;
    margin-bottom: 0;
    font-size: 0.95rem;
}

[data-component="footer"] {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #07090c;
}

[data-element="footer-content"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

[data-element="disclaimer"] {
    max-width: 700px;
    font-size: 0.85rem;
    color: #484f58;
}

[data-element="footer-nav"] {
    display: flex;
    gap: 20px;
}

[data-element="footer-nav"] a {
    color: #e6edf3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

[data-element="copyright"] {
    font-size: 0.8rem;
    color: #484f58;
    margin-top: 10px;
}

[data-section="description-text"] {
    padding: 60px 0 100px;
    background: #0a0c10;
}

[data-component="text-content"] {
    max-width: 800px;
    margin: 0 auto;
    color: #8b949e;
}

[data-component="text-content"] h2[data-element="sub-title"] {
    color: #f0f6fc;
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-left: 4px solid #8b5cf6;
    padding-left: 20px;
}

[data-component="text-content"] p {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

[data-component="text-content"] strong {
    color: #4ade80;
    font-weight: 600;
}

@media (max-width: 768px) {
    [data-element="navbar-flex"] {
        flex-direction: column;
        gap: 15px;
    }
    [data-element="nav-links"] a {
        margin: 0 10px;
    }
}

[data-section="legal-content"] {
    padding: 40px 0 100px;
}
.last-updated {
    color: #4ade80;
    font-family: monospace;
    margin-bottom: 30px;
    font-size: 0.9rem;
}
[data-component="text-content"] h1 {
    color: #f0f6fc;
    font-size: 2.5rem;
    margin-bottom: 10px;
}