* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Background Shapes */
.absolute {
    position: absolute;
    top: 0;
    inset: 0;
    justify-content: center;
    display: inline-flex;
    flex-direction: row;
    z-index: -1;
}

.justify-center {
    justify-content: center;
}

.bg-shape1 {
    width: 500px;
    height: 400px;
    border-radius: 9999px;
    position: absolute;
    animation: float1 15s infinite;
    z-index: -100;
    overflow: hidden;
}

@keyframes float1 {
    0%{left: -400px; top: -200px;}
    25%{left: -200px; top: -300px;}
    50%{left: -300px; top: -150px;}
    75%{left: -200px; top: -300px;}
    100%{left: -400px; top: -200px;}
}

.bg-shape2{
    width: 600px;
    height: 700px;
    border-radius: 9999px;
    position: absolute;
    animation: float2 15s infinite;
    z-index: -100;
    overflow: hidden;
}

@keyframes float2 {
    0%{left: 1500px; top: 500px;}
    25%{left: 1300px; top: 400px;}
    50%{left: 1400px; top: 600px;}
    75%{left: 1300px; top: 400px;}
    100%{left: 1500px; top: 500px;}
}

.bg-shape3{
    width: 400px;
    height: 600px;
    border-radius: 9999px;
    position: absolute;
    animation: float3 15s infinite;
    z-index: -100;
    overflow: hidden;
}

@keyframes float3 {
    0%{left: 0px; top: 500px;}
    25%{left: 200px; top: 1000px;}
    50%{left: 300px; top: 1200px;}
    75%{left: 200px; top: 1000px;}
    100%{left: 0px; top: 500px;}
}

.bg-shape4{
    width: 400px;
    height: 300px;
    border-radius: 9999px;
    position: absolute;
    animation: float4 15s infinite;
    z-index: -100;
    overflow: hidden;
}

@keyframes float4 {
    0%{left: -100px; top: 4000px;}
    25%{left: 0px; top: 3700px;}
    50%{left: 10px; top: 3900px;}
    75%{left: 0px; top: 3700px;}
    100%{left: -100px; top: 4000px;}
}

.opacity-50{
    opacity: .5;
}

.bg-blur{
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);    
    filter: blur(90px);
}

.bg-blue {
    background: linear-gradient(135deg, #0044FF 0%, #5BA8FF 100%);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    z-index: 100;
    text-align: center;
    padding: 0 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    margin-right: 16px;
}

.title {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 800;
    background: linear-gradient(135deg, #0044FF 43.87%, #5BA8FF 90%, #0044FF);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 6s ease-in-out infinite;
    user-select: none;
    margin-bottom: 0;
    line-height: 1.1;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.subtitle {
    color: #1e293b;
    text-align: center;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    margin-bottom: 48px;
    transition: all 0.2s;
    user-select: none;
    line-height: 1.4;
}

.highlight {
    color: #0044FF;
    font-weight: 700;
    font-size: inherit;
}

.progress-container {
    width: min(440px, 80vw);
    height: 14px;
    flex-shrink: 0;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    position: relative;
    margin-bottom: 16px;
    user-select: none;
    overflow: hidden;
}

.progress-bar {
    width: 0px;
    height: 14px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #0044FF 0%, #5BA8FF 100%);
    border-radius: 100px;
    transition: width 0.3s ease-out;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 68, 255, 0.3);
}

header span {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 8px;
    user-select: none;
    font-weight: 500;
}

.dev-status {
    color: #64748b;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 48px;
    user-select: none;
}

/* Newsletter */
.newsletter {
    margin-top: 20px;
    transition: all 0.25s;
    z-index: 100;
    width: 100%;
    max-width: 500px;
}

.newsletter:hover {
    transform: scale(1.02);
    z-index: 100;
}

.newsletter-p {
    color: #64748b;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    z-index: 100;
    user-select: none;
}

.newsletter form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 100;
    width: 100%;
}

#emailInput {
    font-size: 16px;
    outline: none;
    padding: 16px 20px;
    width: 100%;
    height: 56px;
    border-radius: 12px 0px 0px 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 68, 255, 0.15);
    z-index: 100;
    transition: all 0.3s ease;
}

#emailInput:focus {
    border-color: #0044FF;
    box-shadow: 0 8px 32px rgba(0, 68, 255, 0.25);
}

button {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #0044FF 0%, #5BA8FF 100%);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0px 12px 12px 0px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 68, 255, 0.3);
    z-index: 100;
    min-width: 120px;
    justify-content: center;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 68, 255, 0.4);
}

button span {
    display: block;
    margin-left: 8px;
    transition: all 0.3s ease-in-out;
    z-index: 100;
}

button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
    transform: translateX(8px) rotate(45deg) scale(1.1);
}

button:hover span {
    transform: translateX(8px);
}

button:active {
    transform: scale(0.98);
}

/* Scroll Indicator */
#section05 {
    position: relative;
    margin-top: 40px; 
}

#section05 a span {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 3px solid #0044FF;
    border-bottom: 3px solid #0044FF;
    transform: rotate(-45deg);
    animation: scroll-indicator 1.5s infinite;
    box-sizing: border-box;
    z-index: 10000;
}

@keyframes scroll-indicator {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

/* Sections */
.features-section, .platforms-section, .security-section, .cta-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: #1e293b;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 68, 255, 0.15);
}

.feature-card.coming-soon {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0044FF 0%, #5BA8FF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card.coming-soon .feature-icon {
    background: #9ca3af;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: #64748b;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0044FF;
    font-weight: bold;
}

.feature-card.coming-soon li::before {
    color: #9ca3af;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.platform-item {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 68, 255, 0.15);
}

.platform-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.platform-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 32px;
    margin: 80px 20px;
    padding: 80px 40px;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.security-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.security-text p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 48px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.security-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0044FF 0%, #5BA8FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-feature h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.security-feature p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.security-visual {
    display: flex;
    justify-content: center;
}

.security-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 68, 255, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 300px;
    width: 100%;
}

.security-card-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.security-dots {
    display: flex;
    gap: 8px;
}

.security-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.security-dots span:first-child {
    background: #ef4444;
}

.security-dots span:nth-child(2) {
    background: #f59e0b;
}

.security-dots span:last-child {
    background: #10b981;
}

.security-card-content {
    text-align: center;
}

.security-shield {
    font-size: 48px;
    margin-bottom: 16px;
}

.security-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.security-card p {
    color: #64748b;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0044FF 0%, #5BA8FF 100%);
    border-radius: 32px;
    margin: 80px 20px;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-white {
    color: white;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #0044FF;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    margin-top: 80px;
    padding: 64px 20px 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    margin-bottom: 32px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.footer-info p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-social {
    text-align: right;
}

.follow-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.copyright {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .security-section, .cta-section {
        margin: 40px 16px;
        padding: 40px 24px;
    }
    
    .features-section, .platforms-section {
        padding: 40px 16px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .logo {
        width: 36px;
        height: 36px;
    }
    
    .title-container {
        gap: 12px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .platform-item {
        padding: 24px 16px;
    }
    
    .newsletter form {
        flex-direction: column;
        gap: 12px;
    }
    
    #emailInput {
        border-radius: 12px;
    }
    
    button {
        border-radius: 12px;
    }
}
