/* Color Palette & Base Setup */
:root {
    --primary: #00A2FF;
    --primary-hover: #0081CC;
    --bg-main: #0B0E14;
    --bg-secondary: #151A22;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --border-color: #2A313E;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Public Sans', Finder, system-ui, Helvetica, Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

.links a:hover {
    color: var(--text-main);
}

.btn-small {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.btn-small:hover {
    background: var(--border-color);
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 20px;
    background: radial-gradient(circle at top center, #1a2536 0%, var(--bg-main) 70%);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 162, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 162, 255, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
        font-family: "DSans", sans-serif;
    line-height: 1.1;
    letter-spacing: -1px;
}

h1,h2,h3,h4,h5,h6,.heading {
    font-family: "DSans", sans-serif !important;
}

.gradient-text {
    background: linear-gradient(135deg, #00A2FF, #00F0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Call to Action Buttons */
.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.3);
}

.btn-large:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 162, 255, 0.4);
}

.rating {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.rating span {
    margin-left: 8px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
    background: var(--bg-main);
}

.card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-muted);
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 10%;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    nav { padding: 1rem 5%; }
    .features { padding: 3rem 5%; }
}