:root {
    --primary: #BADA55;
    --primary-hover: #c6e66b;
    --bg: #1F2937;
    --text: #F1F5F9;
    --text-muted: #94a3b8;
    --platinum: #F1F5F9;
    --jet-black: #1F2937;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-heavy: rgba(31, 41, 55, 0.8);
    --max-width: 1200px;
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

/* Header/Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: var(--glass-heavy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary {
    background-color: var(--primary);
    color: #000000 !important;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 218, 85, 0.2);
}

/* Hero Section */
.hero {
    padding-top: 12rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(186, 218, 85, 0.1) 0%, rgba(186, 218, 85, 0) 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
}

.hero-image-container {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.02);
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-image-wrapper {
    width: 100%;
    height: 220px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-image-wrapper img {
    transform: scale(1.05);
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

/* Showcase Sections */
.showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 1.5rem 0;
}

.showcase.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.showcase-image {
    flex: 1;
}

.showcase-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

/* Pricing/CTA */
.cta-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 5rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 3rem;
}

.price {
    font-size: 4rem;
    color: var(--primary);
    font-weight: 800;
    margin: 1rem 0;
}

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

/* Comparison Table */
.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 4rem auto;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table .feature-name {
    color: var(--text);
    font-weight: 600;
}

.comparison-table .pro-value {
    color: var(--primary);
    font-weight: 700;
}

.pro-extra-benefits {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto 3rem;
    text-align: left;
    display: inline-block;
}

.pro-extra-benefits li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
}

.pro-extra-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .showcase {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 0;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
}