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

body {
    font-family: 'Outfit', 'Noto Sans SC', sans-serif;
    background-color: #0b0c10;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Animations */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 40vw;
    height: 40vw;
    background: #6c5ce7;
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: #0984e3;
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: #e84393;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: #fff;
    cursor: pointer;
}

.logo svg {
    color: #a29bfe;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 2rem 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: slideUp 1s ease-out forwards;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(162, 155, 254, 0.1);
    border: 1px solid rgba(162, 155, 254, 0.2);
    border-radius: 50px;
    color: #a29bfe;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b2bec3;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Download Cards */
.download-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #a29bfe;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.card:nth-child(2)::before {
    background: #e84393;
}

.card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(162, 155, 254, 0.3);
}

.card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    flex-shrink: 0;
}

.card-icon.ddt-icon {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    box-shadow: 0 10px 20px rgba(232, 67, 147, 0.3);
}

.card-icon svg {
    color: white;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-text p {
    color: #b2bec3;
    font-size: 0.9rem;
}

.card-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card:hover .card-arrow {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

/* Hero Image/Graphic */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.glass-orb {
    width: min(350px, 80vw);
    height: min(350px, 80vw);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0,0,0,0.2) inset, 0 30px 60px rgba(0,0,0,0.5);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatOrb 6s infinite ease-in-out;
}

.orb-inner {
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.6), rgba(232, 67, 147, 0.6));
    border-radius: 50%;
    filter: blur(25px);
    animation: pulse 4s infinite alternate;
}

.wave {
    position: absolute;
    width: 50%;
    height: 50%;
    border: 2px solid rgba(162, 155, 254, 0.5);
    border-radius: 50%;
    animation: ripple 3s linear infinite;
    opacity: 0;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    color: #636e72;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
    .container { padding: 0 1.5rem; }
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .download-cards {
        width: 100%;
        max-width: 450px;
    }
    .card { text-align: left; }
}
@media (max-width: 480px) {
    .card { padding: 1.25rem; flex-direction: column; text-align: center; gap: 1rem; }
    .card-arrow { display: none; }
}
