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

:root {
    --primary: #00B050;
    --secondary: #00D968;
    --accent: #4ADE80;
    --dark: #1A1A1A;
    --darker: #0A0A0A;
    --text-light: #FFFFFF;
    --text-gray: #D1D5DB;
}

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

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="10" cy="10" r="1" fill="white"/><circle cx="40" cy="30" r="0.5" fill="white"/><circle cx="70" cy="50" r="1" fill="white"/><circle cx="20" cy="70" r="0.5" fill="white"/><circle cx="90" cy="20" r="1" fill="white"/><circle cx="50" cy="90" r="0.5" fill="white"/></svg>') repeat;
    z-index: 0;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="30" cy="30" r="2" fill="rgba(124,58,237,0.5)"/><circle cx="130" cy="70" r="1.5" fill="rgba(16,185,129,0.5)"/><circle cx="70" cy="140" r="1" fill="rgba(167,139,250,0.5)"/></svg>') repeat;
    animation: move-twinkling 100s linear infinite;
    z-index: 0;
}

@keyframes move-twinkling {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

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

.logo-container {
    display: inline-block;
    position: relative;
}

.logo {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.logo-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    animation: underline-glow 2s ease-in-out infinite;
}

@keyframes underline-glow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px var(--primary);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px var(--secondary);
    }
}

.tagline {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1.5rem;
    letter-spacing: 2px;
}

.hero {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 50%,
        rgba(167, 139, 250, 0.1) 100%);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-bottom: 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 40px;
    z-index: -1;
    opacity: 0.5;
    animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.hero-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    animation: pulse-effect 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-effect {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch {
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
        0 10px 40px rgba(124, 58, 237, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.6),
        0 0 40px rgba(16, 185, 129, 0.4);
}

.button-icon {
    transition: transform 0.3s;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

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

.feature-card {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out both;
    overflow: hidden;
}

.feature-card:nth-child(1) { animation-delay: 0.5s; }
.feature-card:nth-child(2) { animation-delay: 0.7s; }
.feature-card:nth-child(3) { animation-delay: 0.9s; }

.feature-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-background {
    opacity: 0.1;
}

.feature-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

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

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px var(--primary));
    transition: transform 0.5s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-section {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    animation: fadeInUp 1s ease-out 1.1s both;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.info-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.header-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.info-grid {
    display: grid;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.info-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.1rem;
    flex: 1;
}

footer {
    margin-top: 6rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.footer-content {
    text-align: center;
    color: var(--text-gray);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

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

    .info-section {
        padding: 2.5rem 2rem;
    }

    .info-header h2 {
        font-size: 2rem;
    }

    .info-item {
        flex-direction: column;
        gap: 1rem;
    }

    .info-number {
        font-size: 2rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }

    .logo {
        font-size: 5rem;
    }

    h1 {
        font-size: 5rem;
    }
}
