@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');

/* ============================================
   CSS Variables (Landing Design System)
   ============================================ */
/* Design tokens: /assets/styles/theme-tokens.css */

/* ============================================
   Reset & Base
   ============================================ */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--ap-text-primary);
    background: var(--ap-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--ap-scrollbar-thumb);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ap-scrollbar-thumb-hover);
}

/* ============================================
   Container
   ============================================ */
.lp-container {
    width: 100%;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ap-accent);
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--ap-radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-btn-primary:hover {
    background: var(--ap-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(79, 125, 243, 0.25);
}

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ap-text-primary);
    border: 1px solid var(--ap-border-hover);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: var(--ap-radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-btn-secondary:hover {
    background: var(--ap-bg-hover);
    border-color: var(--ap-border-hover);
    transform: translateY(-1px);
}

/* ============================================
   Hero Section
   ============================================ */
.lp-hero {
    padding: 160px 0 120px;
}

.lp-hero .lp-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Announcement Badge */
.lp-announcement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ap-bg-card-alt);
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius-full);
    padding: 6px 18px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ap-text-secondary);
}

.lp-announcement-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ap-success);
    animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

/* Hero Left */
.lp-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lp-hero-headline {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.12;
    color: var(--ap-text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.lp-hero-headline .lp-highlight {
    color: var(--ap-accent);
}

.lp-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--ap-text-secondary);
    max-width: 480px;
    margin-bottom: 36px;
}

.lp-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.lp-hero-ctas .lp-btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
}

.lp-hero-ctas .lp-btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
}

.lp-hero-ctas .lp-btn-secondary svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* Trust Badges */
.lp-trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ap-text-muted);
}

.lp-trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--ap-success);
    flex-shrink: 0;
}

/* Hero Image */
.lp-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-hero-image img {
    width: 160%;
    max-width: 640px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.35));
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .lp-container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .lp-hero {
        padding: 130px 0 80px;
    }

    .lp-hero .lp-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-hero-content {
        align-items: center;
        text-align: center;
    }

    .lp-hero-headline {
        font-size: 2.75rem;
    }

    .lp-hero-subtitle {
        max-width: 560px;
    }

    .lp-hero-ctas {
        justify-content: center;
    }

    .lp-trust-badges {
        justify-content: center;
    }

    

    

    

    
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 640px) {
    .lp-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-navbar-links {
        display: none;
    }

    .lp-hero {
        padding: 120px 0 60px;
    }

    .lp-hero-headline {
        font-size: 2.1rem;
    }

    .lp-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .lp-hero-ctas .lp-btn-primary,
    .lp-hero-ctas .lp-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .lp-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    

    

    
}