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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
    color: #111827;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animations */
@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 30px) scale(1.15);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(-50%, -50%) translate(0, 0);
    }

    50% {
        transform: translate(-50%, -50%) translate(15px, -15px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Background Effects */
.bg-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.bg-orb-1 {
    top: 40px;
    left: 10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(to right, rgba(219, 234, 254, 0.6), rgba(191, 219, 254, 0.4));
    animation: float1 8s ease-in-out infinite;
}

.bg-orb-2 {
    bottom: 80px;
    right: 5%;
    width: 600px;
    height: 600px;
    background: linear-gradient(to right, rgba(191, 219, 254, 0.5), rgba(147, 197, 253, 0.3));
    filter: blur(120px);
    animation: float2 10s ease-in-out infinite;
    animation-delay: 1s;
}

.bg-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, rgba(239, 246, 255, 0.8), rgba(219, 234, 254, 0.6));
    filter: blur(80px);
    animation: float3 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Grid Pattern */
.grid-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image:
        linear-gradient(to right, #0066FF 1px, transparent 1px),
        linear-gradient(to bottom, #0066FF 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 10;
    max-width: 896px;
    margin: 0 auto;
    padding: 128px 24px 80px;
}

.content-wrapper {
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
}

/* Eyebrow Badge */
.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #DBEAFE;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
    animation: scaleIn 0.4s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.eyebrow-badge svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.eyebrow-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Main Title */
.main-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 60px;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 72px;
    }
}

.title-dark {
    color: #111827;
}

.title-gradient {
    background: linear-gradient(to right, #0066FF, #4D94FF, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.subtitle {
    font-size: 18px;
    color: #6B7280;
    max-width: 576px;
    margin: 0 auto 48px;
    font-weight: 300;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Search Type Selector */
.search-types {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.search-type-btn {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    border: 2px solid #DBEAFE;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-type-btn:hover {
    border-color: #93C5FD;
    background: rgba(239, 246, 255, 0.5);
    color: #0066FF;
}

.search-type-btn:hover svg {
    transform: scale(1.1);
}

.search-type-btn.active {
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
    border-color: transparent;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.search-type-btn.active svg {
    transform: scale(1.1);
}

.search-type-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.new-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Search Bar */
.search-bar-container {
    max-width: 672px;
    margin: 0 auto 24px;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 24px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid #DBEAFE;
    box-shadow: 0 20px 25px -5px rgba(219, 234, 254, 0.5);
    transition: all 0.3s ease;
}

.search-bar:hover,
.search-bar:focus-within {
    border-color: #BFDBFE;
    box-shadow: 0 20px 25px -5px rgba(191, 219, 254, 0.5);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #1F2937;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.action-btn {
    padding: 10px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    color: #0066FF;
    background: #EFF6FF;
}

.action-btn svg {
    width: 20px;
    height: 20px;
}

.search-btn {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    border: none;
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.search-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.6);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* Terms Checkbox */
.terms-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.terms-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #0066FF;
    cursor: pointer;
}

.terms-label {
    font-size: 14px;
    color: #6B7280;
    cursor: pointer;
}

.terms-label a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
}

.terms-label a:hover {
    text-decoration: underline;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 64px;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4B5563;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: #22C55E;
}