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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.022em;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #000000 0%, #5A2293 50%, #46B9C4 100%);
    position: relative;
}

.background-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

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

.orb-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: rgba(70, 185, 196, 0.2);
    animation: float1 8s ease-in-out infinite;
}

.orb-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(160, 85, 247, 0.2);
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.fade-in-delay-4 {
    animation: fadeIn 0.6s ease-out 0.8s both;
}

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

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.logo {
    width: 120px;
    height: 120px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
    .logo {
        width: 160px;
        height: 160px;
    }
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 64px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 768px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

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

/* Form */
.form-container {
    max-width: 896px;
    margin: 0 auto 80px;
}

.form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .form-card {
        padding: 48px;
    }
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 2.25rem;
    }
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-btn {
    padding: 16px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.audience-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.audience-btn.selected {
    background: white;
    border-color: white;
    color: #5A2293;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.audience-icon {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.audience-btn.selected .audience-icon {
    color: #5A2293;
}

.audience-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Email Input */
.email-input {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.125rem;
    font-family: inherit;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

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

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: white;
    color: #5A2293;
    padding: 20px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.02);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Status Message */
.status-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-message.hidden {
    display: none;
}

.status-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #d1fae5;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.status-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fee2e2;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 40px;
    padding-bottom: 20px;
}
