/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Tokens */
    --base-100: #FFFFFF;
    --base-200: #EDEEF0;
    --base-300: #9098A0;
    --base-400: #555E67;
    --base-500: #31373D;
    --base-600: #1D1F20;
    --primary-blue: #0066FF;
    --primary-blue-hover: #0052CC;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Gilroy-Bold', 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--base-600);
    background-color: var(--base-100);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Banner */
.top-banner {
    background-color: var(--base-600);
    color: var(--base-100);
    text-align: center;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.1px;
}

.top-banner a {
    color: var(--base-100);
    text-decoration: underline;
    margin-left: 8px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--base-100);
    border-bottom: 1px solid var(--base-200);
    z-index: 1000;
    padding: 0 24px;
}

.nav-container {
    max-width: 1392px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--base-600);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--base-600);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--base-500);
}

.nav-link svg {
    width: 12px;
    height: 8px;
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid;
}

.btn-primary {
    background-color: var(--base-600);
    color: var(--base-100);
    border-color: var(--base-600);
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    height: 40px;
}

.btn-primary:hover {
    background-color: var(--base-500);
    border-color: var(--base-500);
}

.btn-secondary {
    background-color: transparent;
    color: var(--base-600);
    border-color: var(--base-400);
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    height: 40px;
}

.btn-secondary:hover {
    background-color: var(--base-200);
}

.btn-primary-large {
    background-color: var(--base-600);
    color: var(--base-100);
    border-color: var(--base-600);
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    height: 48px;
}

.btn-primary-large:hover {
    background-color: var(--base-500);
    border-color: var(--base-500);
}

.btn-secondary-large {
    background-color: transparent;
    color: var(--base-600);
    border-color: var(--base-400);
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
    height: 48px;
}

.btn-secondary-large:hover {
    background-color: var(--base-200);
}

/* Hero Section */
.hero-section {
    padding: 80px 94px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-container {
    max-width: 1252px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 92px;
    font-weight: 700;
    line-height: 88px;
    letter-spacing: -3.6px;
    color: var(--base-600);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.2px;
    color: var(--base-400);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1252px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--base-200);
    aspect-ratio: 16 / 9;
}

.dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(56, 62, 71, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button:hover {
    background-color: rgba(56, 62, 71, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
}

/* Trusted By Section */
.trusted-section {
    padding: 80px 94px;
    text-align: center;
}

.trusted-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-400);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.trusted-logos img:hover {
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: 120px 94px;
    background-color: var(--base-100);
}

.features-section.dark {
    background-color: var(--base-600);
    color: var(--base-100);
}

.feature-content {
    max-width: 1252px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse>* {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: -0.1px;
    color: var(--base-400);
    background-color: var(--base-200);
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.features-section.dark .feature-tag {
    background-color: var(--base-500);
    color: var(--base-300);
}

.feature-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: -1.5px;
    color: var(--base-600);
    margin-bottom: 24px;
}

.features-section.dark .feature-title {
    color: var(--base-100);
}

.feature-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: var(--base-400);
    margin-bottom: 32px;
}

.features-section.dark .feature-description {
    color: var(--base-300);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--base-600);
    text-decoration: none;
    transition: gap 0.3s;
}

.features-section.dark .feature-link {
    color: var(--base-100);
}

.feature-link:hover {
    gap: 12px;
}

.feature-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--base-200);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.stats-section {
    padding: 80px 94px;
    background-color: var(--base-200);
}

.stats-container {
    max-width: 1252px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--base-600);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: var(--base-400);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 94px;
    background-color: var(--base-100);
}

.section-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--base-600);
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    max-width: 1252px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--base-100);
    border: 1px solid var(--base-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--base-300);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--base-600);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-600);
}

.author-role {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-400);
}

/* CTA Section */
.cta-section {
    padding: 120px 94px;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: var(--base-100);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--base-100);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cta-buttons .btn-primary-large {
    background-color: var(--base-100);
    color: var(--primary-blue);
    border-color: var(--base-100);
}

.cta-buttons .btn-primary-large:hover {
    background-color: var(--base-200);
    border-color: var(--base-200);
}

.cta-buttons .btn-secondary-large {
    background-color: transparent;
    color: var(--base-100);
    border-color: var(--base-100);
}

.cta-buttons .btn-secondary-large:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--base-600);
    color: var(--base-100);
    padding: 64px 94px 0;
}

.footer-container {
    max-width: 1252px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    gap: 80px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--base-500);
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--base-100);
}

.footer-links {
    display: flex;
    gap: 80px;
    flex: 1;
}

.footer-column {
    flex: 1;
}

.footer-column.cta-column {
    flex: 0 0 296px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-100);
    margin-bottom: 16px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: var(--base-100);
}

.footer-btn-primary,
.footer-btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.2px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid;
}

.footer-btn-primary {
    background-color: var(--base-100);
    color: var(--base-600);
    border-color: var(--base-100);
    margin-bottom: 12px;
}

.footer-btn-primary:hover {
    background-color: var(--base-200);
    border-color: var(--base-200);
}

.footer-btn-secondary {
    background-color: transparent;
    color: var(--base-100);
    border-color: var(--base-500);
}

.footer-btn-secondary:hover {
    background-color: var(--base-500);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-300);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.1px;
    color: var(--base-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--base-100);
}

.footer-legal span {
    color: var(--base-400);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base-300);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--base-100);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 72px;
        line-height: 76px;
        letter-spacing: -2.8px;
    }

    .feature-content {
        gap: 48px;
    }

    .feature-title {
        font-size: 40px;
        line-height: 44px;
    }
}

@media (max-width: 992px) {
    .nav-left {
        gap: 32px;
    }

    .hero-section {
        padding: 60px 48px 0;
    }

    .hero-title {
        font-size: 56px;
        line-height: 60px;
        letter-spacing: -2px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-content.reverse {
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 40px;
        line-height: 44px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section-title,
    .cta-title {
        font-size: 40px;
        line-height: 44px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .hero-section,
    .trusted-section,
    .features-section,
    .stats-section,
    .testimonials-section,
    .cta-section,
    .footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}