body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    background: #13131e;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    z-index: 1;
    padding: 35px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 45px 40px 80px;
    }
}

/* Decorative Gradient Orbs */
.gradient-orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(56px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-top-left {
    top: 50%;
    left: 50%;
    background-color: #a78bfa;
    transform: translate(-60%, -50%);
}

.gradient-orb-bottom-right {
    top: 50%;
    left: 50%;
    background-color: #a78bfa;
    transform: translate(-40%, -50%);
}

@media (min-width: 640px) {
    .gradient-orb {
        width: 400px;
        height: 400px;
        filter: blur(66px);
    }

    .gradient-orb-top-left {
        transform: translate(-55%, -50%);
    }

    .gradient-orb-bottom-right {
        transform: translate(-45%, -50%);
    }
}

@media (min-width: 1024px) {
    .gradient-orb {
        width: 512px;
        height: 512px;
        filter: blur(80px);
    }

    .gradient-orb-top-left {
        transform: translate(-55%, -50%);
    }

    .gradient-orb-bottom-right {
        transform: translate(-45%, -50%);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
}

/* Headline */
.hero-headline {
    font-size: 2.95rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    padding-bottom: 0.1em;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3),
                 0 4px 20px rgba(0, 0, 0, 0.2),
                 0 0 30px rgba(255, 255, 255, 0.1);
    overflow: visible;
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4.65rem;
        margin-bottom: 24px;
        padding-bottom: 0.15em;
    }
}

/* Subheadline */
.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 36px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3),
                 0 1px 4px rgba(167, 139, 250, 0.1);
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subheadline {
        margin-bottom: 48px;
    }
}

/* CTA Form */
.cta-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
}

.website-input-container {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(66, 42, 213, 0.1));
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.15s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.15);
}

.website-input-container:hover {
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 6px 16px rgba(167, 139, 250, 0.2);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(66, 42, 213, 0.15));
}

.website-input-container:focus-within {
    border-color: rgba(167, 139, 250, 0.8);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.25), rgba(66, 42, 213, 0.2));
    box-shadow: 0 8px 20px rgba(167, 139, 250, 0.3);
}

.website-input-container.typing {
    border-color: rgba(167, 139, 250, 0.6);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(66, 42, 213, 0.1));
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
    position: relative;
}

.website-input-container.typing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.15), transparent 70%);
    opacity: 0;
    pointer-events: none;
    animation: subtleGlow 2s ease-in-out infinite;
    z-index: -1;
}

.website-input-container.typing:hover {
    border-color: rgba(167, 139, 250, 0.8);
    box-shadow: 0 6px 16px rgba(167, 139, 250, 0.3);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(66, 42, 213, 0.15));
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

.website-input-container.valid-url {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.1));
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.globe-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    min-width: 56px;
    height: 100%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(167, 139, 250, 0.06));
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.website-input-container:focus-within .globe-icon-wrapper {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.15));
    border-right-color: rgba(167, 139, 250, 0.3);
}

.website-input-container.typing .globe-icon-wrapper {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.15));
    border-right-color: rgba(167, 139, 250, 0.3);
}

.website-input-container.valid-url .globe-icon-wrapper {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.06));
    border-right-color: rgba(16, 185, 129, 0.2);
}

.globe-icon {
    width: 24px;
    height: 24px;
    color: rgba(167, 139, 250, 0.8);
    transition: color 0.15s ease;
}

.website-input-container:focus-within .globe-icon {
    color: #a78bfa;
}

.website-input-container.typing .globe-icon {
    color: #a78bfa;
}

.website-input-container.valid-url .globe-icon {
    color: #10b981;
}

.website-input {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.website-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.website-input:focus {
    outline: none;
}

.add-website-btn {
    width: 100%;
    padding: 0.5rem 1.5rem;
    background-color: #422ad5;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.15s ease;
    box-shadow: 0 10px 15px -3px rgba(167, 139, 250, 0.3), 0 4px 6px -2px rgba(167, 139, 250, 0.3);
}

.add-website-btn:hover {
    background-color: #3b25c1;
    box-shadow: 0 10px 15px -3px rgba(167, 139, 250, 0.4), 0 4px 6px -2px rgba(167, 139, 250, 0.4);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.trial-message {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    text-align: center;
}

/* Compatible Technologies */
.compatible-tech {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .compatible-tech {
        gap: 16px;
        margin-top: 48px;
    }
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    max-width: 100%;
    padding: 0 16px;
    justify-items: center;
}

@media (min-width: 640px) {
    .tech-logos {
        grid-template-columns: repeat(8, 1fr);
        gap: 8px;
        padding: 0;
        max-width: 480px;
    }
}

.tech-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .tech-logo {
        width: 48px;
        height: 48px;
        padding: 8px;
    }
}

.tech-logo img,
.tech-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-logo.way-more {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.1));
    border-color: rgba(167, 139, 250, 0.3);
    font-size: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 2px;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .tech-logo.way-more {
        font-size: 0.625rem;
        padding: 0 4px;
    }
}

.compatible-tech-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 0 16px;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .compatible-tech-text {
        font-size: 0.875rem;
        padding: 0;
    }
}

.compatible-tech-text strong {
    color: #fff;
    font-weight: 600;
}

/* Plug and Play Badge */
.plug-play-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: all 0.15s ease;
}

.plug-play-badge:hover {
    border-color: rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(5, 150, 105, 0.15));
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.plug-play-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5));
}

.plug-play-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .plug-play-badge {
        margin-top: 20px;
        padding: 12px 24px;
    }

    .plug-play-icon {
        width: 22px;
        height: 22px;
    }

    .plug-play-text {
        font-size: 0.9375rem;
    }
}

/* Standalone CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 20px 20px 30px;
    background: #13131e;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 30px 40px 40px;
    }
}

.cta-section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

