* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #030712;
    color: #f3f4f6;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span {
    color: #38bdf8;
}

.dot-badge {
    width: 6px;
    height: 6px;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(56, 189, 248, 0.5);
}

.btn-glow {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-glow:hover {
    background: rgba(56, 189, 248, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: #38bdf8;
    color: #38bdf8;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.15);
}

.glow-2 {
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(147, 51, 234, 0.1);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.announcement-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px 4px 4px;
    border-radius: 30px;
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.pill-badge {
    background: #38bdf8;
    color: #030712;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #9ca3af;
    font-size: 17px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #030712;
    margin-left: -12px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.stars {
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 2px;
}

.proof-text p {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 0;
}

.proof-text strong {
    color: #ffffff;
}

/* Dashboard Mockup UI */
.dashboard-mockup {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.mockup-topbar {
    background: rgba(3, 7, 18, 0.5);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }

.url-bar {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: #6b7280;
}

.mockup-body {
    padding: 24px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sub-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 700;
}

.dashboard-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.live-badge {
    font-size: 12px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.metric-card {
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px;
    border-radius: 10px;
}

.m-label {
    font-size: 12px;
    color: #9ca3af;
}

.m-value {
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-up {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}

.chart-box {
    background: rgba(3, 7, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 10px;
    height: 130px;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    gap: 12px;
}

.bar {
    flex: 1;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s;
}

.bar.active {
    background: linear-gradient(to top, #0284c7, #38bdf8);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #020617;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-title p {
    color: #9ca3af;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
    border-radius: 14px;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-3px);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: #9ca3af;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #030712;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px;
    border-radius: 16px;
}

.t-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #d1d5db;
    font-size: 15px;
    margin-bottom: 24px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.t-author h4 {
    font-size: 15px;
    font-weight: 700;
}

.t-author span {
    font-size: 12px;
    color: #9ca3af;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #020617;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 840px;
    margin: 0 auto;
}

.price-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.price-card.popular {
    border-color: #38bdf8;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.15);
}

.ribbon {
    position: absolute;
    top: -14px;
    right: 32px;
    background: #38bdf8;
    color: #030712;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 16px 0;
}

.price span {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

.price-card p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #d1d5db;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #030712;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f8fafc;
}

.faq-item p {
    color: #9ca3af;
    font-size: 14px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #6b7280;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container, .features-grid, .testimonials-grid, .pricing-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 38px;
    }
}