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

body {
    background: #0f0f0f;
    font-family: "Inter", sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(137, 68, 43, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.logo {
    max-width: 100px;
    height: auto;
    opacity: 0.6;
    margin-top: 15px;
    margin-bottom: 0;
    display: inline-block;
}

.container {
    max-width: 1200px;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #FF7A59;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 122, 89, 0.3);
}

.badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.heading-1 {
    font-size: clamp(32px, 5vw, 64px);
    max-width: 1000px;
    margin: 0 auto 15px;
    padding-top: 30px;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(137, 68, 43, 0.3);
}

.para-1 {
    color: #c4c4c4;
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Animated Feature Pills */
.features-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto 20px;
    max-width: 900px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(137, 68, 43, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #f5f5f5;
    border: 1px solid rgba(137, 68, 43, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    font-weight: 500;
    white-space: nowrap;
}

.pill-arrow {
    background: transparent;
    border: none;
    padding: 8px;
    backdrop-filter: none;
}

.pill-arrow i {
    color: #6B7280;
    font-size: 14px;
}

.pill:nth-child(1) {
    animation-delay: 0.1s;
}

.pill:nth-child(2) {
    animation-delay: 0.25s;
}

.pill:nth-child(3) {
    animation-delay: 0.4s;
}

.pill:nth-child(4) {
    animation-delay: 0.55s;
}

.pill:nth-child(5) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pill:not(.pill-arrow):hover {
    background: rgba(137, 68, 43, 0.3);
    border-color: rgba(212, 131, 79, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(137, 68, 43, 0.4);
}

.pill i {
    color: #d4834f;
    font-size: 16px;
}

/* Pain Point Section */
.pain-point {
    margin: 0 auto 15px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.85s;
    opacity: 0;
}

.pain-point p {
    font-size: 18px;
    color: #9CA3AF;
    font-weight: 500;
}

.strike {
    text-decoration: line-through;
    color: #6B7280;
}

.highlight-green {
    color: #d4834f;
    font-weight: 600;
}

/* Waitlist CTA with Arrow Annotation */
.waitlist-cta-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.arrow-annotation {
    position: absolute;
    top: 8px;
    left: -260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    width: 200px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.curved-arrow {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-left: 50px;
    margin-top: 2px;
}

.annotation-text {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    font-style: italic;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        color: #6B7280;
        opacity: 0.7;
    }
    50% {
        color: #9CA3AF;
        opacity: 1;
    }
}

/* Waitlist Button */
.waitlist-btn {
    background: linear-gradient(135deg, #d4834f 0%, #89442b 100%);
    color: #ffffff;
    border: none;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(137, 68, 43, 0.5);
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

.waitlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.waitlist-btn:hover::before {
    left: 100%;
}

.waitlist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(137, 68, 43, 0.7);
}

.waitlist-btn:active {
    transform: translateY(0);
}

.waitlist-btn i {
    transition: transform 0.3s ease;
}

.waitlist-btn:hover i {
    transform: translateX(5px);
}

.trial-text {
    color: #6B7280;
    font-size: 14px;
    margin-top: 20px;
}

/* Social Proof */
.social-proof {
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #0f0f0f;
    margin-left: -12px;
    transition: transform 0.3s ease;
    position: relative;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-3px);
    z-index: 10;
}

.waiting-text {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 400;
}

.highlight {
    color: #d4834f;
    font-weight: 600;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 131, 79, 0.5);
    box-shadow: 0 10px 30px rgba(137, 68, 43, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #d4834f 0%, #89442b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(137, 68, 43, 0.4);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #DEDDDC;
}

.feature-card p {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        min-height: 100vh;
        height: auto;
        overflow-x: hidden;
    }
    
    body::before {
        display: none;
    }
    
    .container {
        padding: 20px 15px 20px 15px;
        min-height: auto;
        height: auto;
    }
    
    .hero-section {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .heading-1 {
        padding: 0;
        margin: 0 0 12px 0;
        font-size: 22px;
        line-height: 1.2;
        text-shadow: 0 0 20px rgba(137, 68, 43, 0.3);
    }
    
    .para-1 {
        margin: 0 0 15px 0;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .features-pills {
        gap: 8px;
        margin: 0 0 15px 0;
        flex-direction: column;
    }
    
    .pill {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
        max-width: 90%;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
        white-space: normal;
    }
    
    .pill i {
        font-size: 14px;
    }
    
    .pill-arrow {
        display: none;
    }
    
    .pain-point {
        margin: 0 0 15px 0;
    }
    
    .pain-point p {
        font-size: 14px;
        line-height: 1.3;
        margin: 0;
    }
    
    .logo {
        max-width: 70px;
        margin: 15px 0 0 0;
    }
    
    .arrow-annotation {
        display: none;
    }
    
    .waitlist-cta-wrapper {
        margin: 0;
    }
    
    .waitlist-btn {
        padding: 14px 32px;
        font-size: 15px;
        gap: 10px;
    }
    
    .social-proof {
        margin: 20px 0 0 0;
        gap: 12px;
    }
    
    .avatars {
        margin: 0;
    }
    
    .avatar {
        width: 34px;
        height: 34px;
        margin-left: -10px;
        border-width: 2px;
    }
    
    .avatar:first-child {
        margin-left: 0;
    }
    
    .waiting-text {
        font-size: 14px;
        margin: 0;
    }
}




