:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --bg-dark: #080324;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(8, 3, 36, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background-image: url('assets/hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.announcement {
    margin-bottom: 2rem;
}

.badge {
    background-color: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.announcement a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.hero-image img {
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* Results Section */
.results {
    padding: 6rem 0;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.results h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card img {
    width: 48px;
    margin-bottom: 1.5rem;
}

.result-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.result-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.testimonial-author .author-name {
    font-weight: 600;
}

.testimonial-author .author-org {
    color: var(--text-gray);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.05);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

/* Resources Section */
.resources-section {
    padding: 6rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.resource-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-gray);
}

.resource-icon {
    font-size: 2rem;
}

.resource-item h4 {
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Company Links */
.company-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.company-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.company-links a:hover {
    color: var(--primary-color);
}

/* Demo Section */
.demo-section {
    padding: 8rem 0;
}

.demo-card {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
}

.demo-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-card p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: white;
    color: var(--primary-color);
}

.btn-large:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
