:root {
    --background: #020617; /* slate-950 */
    --foreground: #e2e8f0; /* slate-200 */
    --card: #0f172a; /* slate-900 */
    --card-foreground: #f8fafc; /* slate-50 */
    --primary: #14F195; /* brand DEFAULT */
    --brand-start: #9945FF;
    --brand-end: #14F195;
    --border: #1e293b; /* slate-800 */
    --muted: #64748b; /* slate-500 */
    --radius: 0.75rem;
    --sky-500: rgba(14, 165, 233, 1);
    --sky-200: rgba(186, 230, 253, 1);
}

@keyframes pulse-blob {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Sektions-Animationen */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hintergrund-Animation */
@keyframes bg-pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2%, 2%) scale(1.05); }
    66% { transform: translate(-1%, 3%) scale(0.98); }
}

.bg-glow {
    position: fixed;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(153, 69, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 241, 149, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: bg-pulse 15s ease-in-out infinite;
}

/* Hero Blur Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.15);
    top: 10%;
    left: 10%;
    animation: pulse-blob 8s ease-in-out infinite;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(99, 102, 241, 0.12);
    top: 30%;
    right: 5%;
    animation: pulse-blob 10s ease-in-out infinite;
    animation-delay: 2s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(20, 241, 149, 0.10);
    bottom: 20%;
    left: 15%;
    animation: pulse-blob 12s ease-in-out infinite;
    animation-delay: 4s;
}

.blob-4 {
    width: 380px;
    height: 380px;
    background: rgba(56, 189, 248, 0.08);
    bottom: 5%;
    right: 10%;
    animation: pulse-blob 14s ease-in-out infinite;
    animation-delay: 6s;
}

/* Layout */
.container-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
    z-index: 1;
}

/* Header & Logo */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge / Eyebrow */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    color: #0ea5e9;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 1.5rem;
}

.brand-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(20, 241, 149, 0.3));
    animation: logo-glow 8s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(20, 241, 149, 0.3)); }
    15% { filter: drop-shadow(0 0 45px rgba(20, 241, 149, 0.55)); }
    30% { filter: drop-shadow(0 0 35px rgba(20, 241, 149, 0.4)); }
    45% { filter: drop-shadow(0 0 50px rgba(20, 241, 149, 0.6)); }
    60% { filter: drop-shadow(0 0 30px rgba(20, 241, 149, 0.35)); }
    75% { filter: drop-shadow(0 0 40px rgba(20, 241, 149, 0.5)); }
    85% { filter: drop-shadow(0 0 28px rgba(20, 241, 149, 0.32)); }
}

.brand-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(to right, var(--brand-start), var(--brand-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.description {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto 4rem;
    padding: 1.5rem 3rem;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--foreground);
    text-transform: uppercase;
    width: fit-content;
}

.coming-soon-badge .year {
    background: linear-gradient(to right, var(--brand-start), var(--brand-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.5rem;
}

/* Countdown */
.countdown-section {
    display: none;
}

.countdown-item {
    background: rgba(15, 23, 42, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid transparent;
    border-image: linear-gradient(to right, var(--brand-start), var(--brand-end)) 1 0 0 0;
    padding: 1.5rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(15, 23, 42, 0.70);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(20, 241, 149, 0.1);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 2rem;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--muted);
    border-right: 2px solid var(--muted);
    transform: rotate(45deg);
    margin: -4px;
    animation: arrows-down 2s infinite;
}

.arrows span:nth-child(2) { animation-delay: 0.2s; }
.arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrows-down {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* Features */
.stack-section {
    padding-top: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(153, 69, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-start);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: rgba(153, 69, 255, 0.25);
    transform: scale(1.08);
}

.feature-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tech Grid */
.tech-highlight {
    margin: 4rem 0;
}

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

.tech-card {
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(153,69,255,0.06), rgba(20,241,149,0.06));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.tech-card:hover {
    background: rgba(15, 23, 42, 0.70);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(20, 241, 149, 0.12);
}

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

.tech-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.tech-card p {
    color: var(--muted);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* CTA Box */
.cta-box {
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(24px);
    padding: 4rem 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(20, 241, 149, 0.05), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.08), rgba(20, 241, 149, 0.08));
    pointer-events: none;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: var(--muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.waitlist-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
}

.waitlist-form button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    background: linear-gradient(to right, var(--brand-start), var(--brand-end));
    color: var(--background);
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.waitlist-form button:not(:disabled) {
    cursor: pointer;
    opacity: 1;
}

.waitlist-form button:not(:disabled):hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Widget Section */
.widget-section {
    margin: 6rem 0;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.widget-header {
    margin-bottom: 2rem;
}

.widget-header .badge {
    margin-bottom: 1rem;
}

.widget-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.widget-header p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Token Info Grid */
.token-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
}

.info-card {
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(15, 23, 42, 0.70);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--brand-start), var(--brand-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.widget-description {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.6;
}

.widget-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(20, 241, 149, 0.05);
    position: relative;
    overflow: hidden;
}

.widget-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.06), rgba(20, 241, 149, 0.06));
    pointer-events: none;
}

.widget-frame {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

/* Widget Overlay */
.widget-overlay {
    position: absolute;
    inset: 1.5rem;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.widget-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Launch Countdown */
.launch-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--brand-start), var(--brand-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .launch-countdown {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-separator {
        font-size: 1.25rem;
    }
}

/* Footer */
.seo-footer {
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    margin-top: 4rem;
}

.seo-footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.seo-footer p {
    color: var(--muted);
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 2;
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.language-switcher a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.language-switcher a:hover, .language-switcher a.active {
    color: var(--primary);
}

/* Hover-Effekte verfeinern */
.feature {
    text-align: left;
    padding: 2rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(20, 241, 149, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.feature:hover::after {
    opacity: 1;
}

.tech-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tech-card:hover {
    transform: translateY(-8px);
}

.tech-card i {
    font-size: 2rem;
    color: var(--brand-start);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.tech-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 3rem;
    }
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta-box {
        padding: 3rem 1.5rem;
        margin: 4rem 0;
    }
}

@media (max-width: 640px) {
    .countdown-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .container-main {
        padding: 6rem 1.5rem 3rem;
    }
    .brand-title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.125rem;
    }
    .description {
        font-size: 1rem;
    }
    .waitlist-form {
        flex-direction: column;
    }
    .waitlist-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        gap: 0.75rem;
    }
    .countdown-item {
        padding: 1rem;
    }
    .countdown-number {
        font-size: 2rem;
    }
}
