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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

header {
    padding: 2rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.subline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
}

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

/* Values Section */
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-block {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.8) 0%, rgba(138, 0, 255, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-block:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.value-block:hover::before {
    opacity: 1;
}

.value-block h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.value-block p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Values section responsive */
@media (max-width: 1024px) {
    .values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .hero {
        margin-bottom: 3rem;
    }
}

footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.headline.fade-in {
    animation-delay: 0.2s;
}

.subline.fade-in {
    animation-delay: 0.4s;
}

.cta-button.fade-in {
    animation-delay: 0.6s;
}

.value-block:nth-child(1) {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.value-block:nth-child(2) {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

.value-block:nth-child(3) {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

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

    .logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    main {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.25rem 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
    }
}

/* Privacy Policy Styles */
.policy-header {
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.logo-link {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.policy-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy-section ul {
    margin: 1rem 0 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.policy-section strong {
    color: #ffffff;
    font-weight: 600;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.last-updated {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .policy-header {
        padding: 1.5rem 2rem;
    }
    
    .policy-container {
        padding: 3rem 1.5rem;
    }
    
    .policy-content {
        padding: 2rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-header {
        padding: 1.25rem 1.5rem;
    }
    
    .policy-container {
        padding: 2rem 1rem;
    }
    
    .policy-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .policy-content h1 {
        font-size: 1.75rem;
    }
    
    .policy-section ul {
        margin-left: 1.5rem;
    }
}