:root {
    --color-normy-blue: hsl(15, 85%, 68%);
    --color-normy-accent: hsl(12, 88%, 75%);
    --color-normy-blue-light: hsl(25, 95%, 85%);
    --color-background: hsl(345, 15%, 4%);
    --color-surface: hsl(340, 20%, 6%);
    --color-border: hsl(340, 12%, 20%);
    --color-text: hsl(20, 15%, 95%);
    --color-text-muted: hsl(15, 8%, 65%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.grid-background {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(hsl(340, 12%, 20%, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, hsl(340, 12%, 20%, 0.1) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, hsl(12, 88%, 75%), hsl(15, 85%, 68%));
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, hsl(15, 85%, 68%), hsl(25, 95%, 85%));
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: fall linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    will-change: transform;
}

@keyframes fall {
    to {
        transform: translate3d(0, 110vh, 0) rotate(360deg);
    }
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 1.2rem; }
.snowflake:nth-child(3) { left: 35%; animation-duration: 11s; animation-delay: 0.5s; }
.snowflake:nth-child(4) { left: 55%; animation-duration: 13s; animation-delay: 2.5s; }
.snowflake:nth-child(5) { left: 75%; animation-duration: 10s; animation-delay: 1.8s; font-size: 1.6rem; }
.snowflake:nth-child(6) { left: 90%; animation-duration: 12s; animation-delay: 0.6s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px hsl(12, 88%, 75%, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    border-radius: 24px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-name {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.badge-container {
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: hsl(340, 20%, 6%, 0.8);
    border: 1px solid hsl(12, 88%, 75%, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-normy-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px hsl(12, 88%, 75%, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    color: var(--color-text);
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent), var(--color-normy-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, hsl(340, 20%, 6%, 0.9), hsl(340, 20%, 8%, 0.8));
    border: 1px solid var(--color-border);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px hsl(0, 0%, 0%, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, hsl(12, 88%, 75%, 0.1), transparent 60%);
    pointer-events: none;
}

.countdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.countdown-title {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: hsl(340, 20%, 6%, 0.5);
    border: 1px solid hsl(340, 12%, 20%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-normy-accent);
    box-shadow: 0 10px 30px hsl(12, 88%, 75%, 0.2);
}

.countdown-value {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-normy-blue);
    padding: 0 0.5rem;
}

.launch-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-normy-accent);
    padding: 0.75rem 1.5rem;
    background: hsl(12, 88%, 75%, 0.1);
    border-radius: 100px;
}

.calendar-icon {
    width: 20px;
    height: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, hsl(340, 20%, 6%, 0.6), hsl(340, 20%, 8%, 0.4));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, hsl(12, 88%, 75%, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-normy-accent);
    box-shadow: 
        0 20px 60px hsl(12, 88%, 75%, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    padding: 14px;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(12, 88%, 75%, 0.15), hsl(15, 85%, 68%, 0.15));
    border: 1px solid hsl(12, 88%, 75%, 0.3);
    border-radius: 16px;
    color: var(--color-normy-accent);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(12, 88%, 75%, 0.25), hsl(15, 85%, 68%, 0.25));
    box-shadow: 0 8px 24px hsl(12, 88%, 75%, 0.3);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.expect-section {
    margin: 3rem 0;
    padding: 2rem;
    background: hsl(15, 85%, 68%, 0.05);
    border: 1px solid hsl(15, 85%, 68%, 0.2);
    border-radius: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expect-grid {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.expect-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, hsl(340, 20%, 6%, 0.8), hsl(340, 20%, 8%, 0.6));
    border: 1px solid var(--color-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, hsl(12, 88%, 75%, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-normy-accent);
    box-shadow: 0 15px 40px hsl(12, 88%, 75%, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    padding: 12px;
    background: linear-gradient(135deg, hsl(12, 88%, 75%, 0.15), hsl(15, 85%, 68%, 0.15));
    border: 1px solid hsl(12, 88%, 75%, 0.3);
    border-radius: 12px;
    color: var(--color-normy-accent);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--color-border);
}

.cta-section {
    margin: 3rem 0;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--color-normy-blue), var(--color-normy-accent));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(109, 200, 236, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px hsl(12, 88%, 75%, 0.4);
}

.btn-icon {
    width: 24px;
    height: 24px;
}

.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-normy-accent);
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .countdown-header {
        flex-direction: column;
        text-align: center;
    }

    .countdown-item {
        padding: 1rem;
    }

    .countdown-value {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .orb-1, .orb-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .countdown-section {
        padding: 2rem 1.5rem;
    }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(10px, -10px, 0); }
    50% { transform: translate3d(-10px, 10px, 0); }
    75% { transform: translate3d(10px, 10px, 0); }
}
