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

:root {
    --primary-gradient: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    --secondary-gradient: linear-gradient(135deg, #4a4a4a 0%, #2e2e2e 100%);
    --dark-bg: #1e1e1e;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-color: #f5f5f5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.05;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
    background: var(--secondary-gradient);
}

.circle-3 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Header */
header {
    position: relative;
    z-index: 10;
    padding: 2rem 2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

.logo svg {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.network-visualization {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    animation: fadeIn 1.5s ease;
}

.network-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.network-svg .central-node {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}

.network-svg .pulse-ring {
    animation: pulse-expand 2.5s ease-out infinite;
}

.network-svg .edge-node {
    animation: node-pulse 2s ease-in-out infinite;
}

.network-svg .edge-node:nth-child(odd) {
    animation-delay: 0.5s;
}

.network-svg .connection {
    animation: fadeInOut 4s ease-in-out infinite;
}

.network-svg .data-packet {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

@keyframes pulse-expand {
    0% {
        r: 16;
        opacity: 0.3;
    }
    100% {
        r: 50;
        opacity: 0;
    }
}

@keyframes node-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes travel {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}


.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: var(--accent-color);
}

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

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Countdown - Hidden */
.countdown {
    display: none;
}
.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* UniqWP Section */
.uniqwp-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.5s both;
}

.uniqwp-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.uniqwp-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.uniqwp-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.speed-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.speed-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.speed-item:hover {
    transform: translateY(-5px);
}

.speed-fast {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.speed-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.speed-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.speed-bars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-end;
    height: 80px;
    margin-bottom: 1rem;
}

.speed-bars .bar {
    width: 12px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    animation: loadBar 1s ease-out forwards;
}

.speed-slow .bar {
    animation-duration: 5s;
}

.speed-fast .bar.active {
    height: 80px;
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fastLoad 1s ease-out forwards;
}

.speed-time {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
}

.speed-badge {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.uniqwp-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.uniqwp-description .highlight {
    color: var(--accent-color);
    font-weight: 700;
}

@keyframes loadBar {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 20px;
        opacity: 1;
    }
}

@keyframes fastLoad {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        height: 80px;
        opacity: 1;
    }
}

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

.feature {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    font-family: 'Courier New', monospace;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
    font-weight: 600;
}

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

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

/* Notify Form */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 3rem auto 1rem;
    flex-wrap: wrap;
}

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.notify-form input:focus {
    outline: none;
    border-color: #888888;
}

.notify-form input::placeholder {
    color: var(--text-secondary);
}

.notify-form button {
    padding: 1rem 2rem;
    background: #f5f5f5;
    border: none;
    border-radius: 0.75rem;
    color: #1e1e1e;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    background: #ffffff;
}

.notify-form button:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    color: #4ade80;
    font-size: 1rem;
    margin-top: 1rem;
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 1s ease 0.5s both;
}

.company-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.company-logo img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.company-logo img:hover {
    opacity: 1;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.company-info {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1.5rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    main {
        padding: 1.5rem;
    }


    .uniqwp-section {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }

    .speed-comparison {
        gap: 2rem;
    }

    .speed-item {
        max-width: 100%;
    }

    .vs-divider {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .features {
        gap: 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .notify-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .notify-form input,
    .notify-form button {
        width: 100%;
        min-width: auto;
    }

    footer {
        padding: 1.5rem;
    }
}
