:root {
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #6200ea;
    --primary-glow: #7c4dff;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.15), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: transform 0.1s ease;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(98, 0, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    padding-top: 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.2), transparent 60%);
    filter: blur(100px);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero-subtitle {
    color: var(--text-muted);
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary-large {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(98, 0, 234, 0.3);
}

.btn-secondary-large {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-secondary-large:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.trusted-by {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.dashboard-img {
    width: 100%;
    border-radius: 20px;
    /* transform: rotateY(-10deg) rotateX(5deg); */
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(5deg);
    }
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatCard 5s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -5%;
    animation-delay: 1s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.icon {
    font-size: 24px;
}

.text {
    display: flex;
    flex-direction: column;
}

.text .label {
    font-size: 12px;
    color: var(--text-muted);
}

.text .value {
    font-weight: 700;
    color: #fff;
}

/* Sections */
.problem-statement {
    padding: 100px 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0c0c14 100%);
}

.problem-statement h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 60px;
}

.strike {
    text-decoration: line-through;
    color: var(--text-muted);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vs-badge {
    background: #222;
    padding: 12px;
    border-radius: 50%;
    font-weight: 800;
    color: #666;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s;
}

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

.glass-card.highlight {
    background: radial-gradient(circle at top right, rgba(98, 0, 234, 0.1), transparent), rgba(255, 255, 255, 0.05);
    border-color: rgba(98, 0, 234, 0.3);
}

.glass-card h3 {
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
    font-size: 18px;
}

/* Features */
.features-section {
    padding: 100px 80px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

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

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-text p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 500px;
}

.feature-visual {
    flex: 1;
}

.code-block {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    border: 1px solid #333;
    color: #a5bddc;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    padding: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
    display: flex;
    justify-content: space-between;
}

.footer-col h3 {
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-muted);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
}

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

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    color: #444;
}

/* SLIM Branding */
.slim {
    font-weight: 300;
    color: var(--text-main);
}

.hero-title .slim-highlight {
    font-weight: 300;
    color: #fff;
    font-style: italic;
    letter-spacing: -2px;
}

/* Frustrations Section */
.frustrations-section {
    padding: 100px 80px;
    background: #08080c;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.complaints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.complaint-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, background 0.3s;
}

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

.complaint-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: #e2e8f0;
}

.complaint-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.quote-icon {
    font-size: 40px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: serif;
}

.highlight-complaint {
    border-color: rgba(98, 0, 234, 0.3);
    background: radial-gradient(circle at center, rgba(98, 0, 234, 0.05), transparent);
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 80px;
    padding-bottom: 0;
    text-align: center;
}

.waitlist-content {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.waitlist-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.1), transparent 50%);
    pointer-events: none;
}

.waitlist-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 16px;
}

.waitlist-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary);
}

.glow-btn {
    position: relative;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.hidden {
    display: none;
}

#successMessage {
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    animation: fadeUp 0.5s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Pricing Section */
.pricing-section {
    padding: 100px 80px;
    background: linear-gradient(180deg, #0c0c14 0%, var(--bg-dark) 100%);
}

.pricing-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    perspective: 1000px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pricing-table th,
.pricing-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table th {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.pricing-table td {
    color: #edf2f7;
    font-size: 16px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.slim-col {
    background: rgba(98, 0, 234, 0.05);
    border-left: 1px solid rgba(98, 0, 234, 0.2);
    border-right: 1px solid rgba(98, 0, 234, 0.2);
}

th.slim-col {
    color: #fff;
    font-weight: 800;
    border-top: 1px solid rgba(98, 0, 234, 0.2);
    border-radius: 12px 12px 0 0;
}

td.slim-col:last-child {
    border-bottom: 1px solid rgba(98, 0, 234, 0.2);
    border-radius: 0 0 12px 12px;
}

.highlight-cell {
    color: #4ade80 !important;
    font-weight: 700;
}

/* Blog Section */
.blog-section {
    padding: 100px 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(98, 0, 234, 0.3);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.img-1 {
    background: linear-gradient(45deg, #1a202c, #2d3748);
}

.img-2 {
    background: linear-gradient(45deg, #2d3748, #4a5568);
}

.img-3 {
    background: linear-gradient(45deg, #4c1d95, #6200ea);
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .hero {
        flex-direction: column;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .cta-group {
        justify-content: center;
    }

    .feature-row {
        flex-direction: column;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

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

    .vs-badge {
        margin: 20px auto;
        width: 50px;
        text-align: center;
    }
}