* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 50%, #0a0a0f, #000000);
    color: #ffffff;
    overflow-x: hidden;
}

.cursor {
    width: 12px;
    height: 12px;
    background: #00f2ff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.05s ease;
    box-shadow: 0 0 20px #00f2ff;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 242, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 0.15s ease;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-text {
    margin-top: 20px;
    color: #00f2ff;
    font-family: monospace;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(0, 242, 255, 0.05));
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #00f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.cta-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, #00f2ff, #0066ff);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
}

.hero-circle {
    width: 300px;
    height: 300px;
    position: relative;
}

.circle-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.circle-2 {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 2px solid rgba(0, 242, 255, 0.5);
    border-radius: 50%;
    animation: pulse 2s infinite 0.5s;
}

.circle-glow {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: #00f2ff;
    border-radius: 50%;
    filter: blur(20px);
    animation: glow 2s infinite;
}

.form-section {
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #00f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-size: 14px;
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group textarea ~ label {
    top: 20px;
    transform: none;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #0a0a14;
    padding: 0 10px;
    color: #00f2ff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00f2ff, #0066ff);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 450px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.toast.success {
    background: rgba(0, 200, 80, 0.95);
    border-left: 4px solid #00ff64;
}

.toast.error {
    background: rgba(220, 50, 50, 0.95);
    border-left: 4px solid #ff3333;
}

.toast.limit {
    background: rgba(255, 120, 0, 0.95);
    border-left: 4px solid #ffaa00;
    max-width: 500px;
    text-align: left;
    font-size: 14px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; filter: blur(20px); }
    50% { opacity: 1; filter: blur(30px); }
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    .cursor, .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
    .hero-circle {
        width: 250px;
        height: 250px;
    }
    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
        text-align: center;
    }
}