:root {
    --primary-black: #000000;
    --secondary-black: #0f0f0f;
    --tertiary-black: #1a1a1a;
    --quaternary-black: #2a2a2a;
    --primary-white: #ffffff;
    --secondary-white: #f5f5f5;
    --tertiary-white: #e5e5e5;
    --gray-light: #666666;
    --gray-medium: #404040;
    --gray-dark: #2a2a2a;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
    animation: grain-move 20s linear infinite;
}

@keyframes grain-move {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-5px, -10px); }
    20% { transform: translate(-10px, 5px); }
    30% { transform: translate(5px, -15px); }
    40% { transform: translate(-15px, 10px); }
    50% { transform: translate(10px, -5px); }
    60% { transform: translate(-5px, 15px); }
    70% { transform: translate(15px, -10px); }
    80% { transform: translate(-10px, -5px); }
    90% { transform: translate(5px, 10px); }
    100% { transform: translate(0, 0); }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-shield {
    width: 24px;
    height: 24px;
    color: var(--primary-white);
    transition: var(--transition-smooth);
}

.logo-text {
    color: var(--primary-white);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-extension {
    color: var(--gray-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--tertiary-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-white);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-white);
}

.nav-link:hover::after {
    width: 100%;
}

.language-switch {
    display: flex;
    gap: 4px;
    margin-right: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--tertiary-white);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.lang-btn.active {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

.lang-btn:hover:not(.active) {
    border-color: var(--primary-white);
    color: var(--primary-white);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: float-1 20s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: float-2 25s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation: float-3 30s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -30px) rotate(180deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 20px) rotate(90deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
    75% { transform: translate(30px, -15px) rotate(270deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tertiary-white);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-white);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-logo {
    margin-bottom: 3rem;
}

.main-shield {
    width: 120px;
    height: 120px;
    color: var(--primary-white);
    animation: shield-breathe 4s ease-in-out infinite;
}

@keyframes shield-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.shield-outline {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-shield 3s ease-out forwards;
}

@keyframes draw-shield {
    to { stroke-dashoffset: 0; }
}

.shield-circle {
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shield-letter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    fill: var(--primary-white);
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.title-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--tertiary-white);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    border: 1px solid var(--primary-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-arrow {
    font-family: 'JetBrains Mono', monospace;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.download-btn {
	left: 2.1em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-light);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: var(--gray-light);
    margin: 0 auto 10px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section,
.whiteprotection-section,
.team-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-block {
    margin-bottom: 2rem;
}

.text-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-block p {
    color: var(--tertiary-white);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-white);
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* WhiteProtection Section */
.whiteprotection-section {
    background: var(--secondary-black);
}

.plugin-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.plugin-logo-container {
    position: relative;
    text-align: center;
}

.plugin-logo {
    width: 150px;
    height: 150px;
    color: var(--primary-white);
    animation: plugin-float 6s ease-in-out infinite;
}

@keyframes plugin-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.plugin-letter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    fill: var(--primary-white);
}

.plugin-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.plugin-tagline {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.plugin-description {
    margin-bottom: 2rem;
}

.plugin-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--tertiary-white);
}

.plugin-features {
    margin-bottom: 3rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.feature-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-white);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    margin-bottom: 0.3rem;
    color: var(--primary-white);
}

.feature-text span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.plugin-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.plugin-actions {
	margin-bottom: 2rem;
}

.version,
.compatibility {
    font-family: 'JetBrains Mono', monospace;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.team-member:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
}

.team-member {
	width: 100%;
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 2rem;
	margin-right: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    max-width: 600px;
    transition: var(--transition-smooth);
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.member-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.team-member:hover .avatar-circle {
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.15);
}

.avatar-initials {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-white);
}

.member-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    border-radius: 50%;
    animation: status-pulse 3s ease-in-out infinite;
}

.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
}

.avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: ;
  }
  .team-member:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.member-role {
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--tertiary-white);
    line-height: 1.6;
}

.footer {
    background: var(--secondary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 2rem;
}

.footer-brand {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-shield {
    width: 20px;
    height: 20px;
    color: var(--primary-white);
}

.footer-brand p {
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
}

.footer-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .about-content,
    .plugin-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .hamburger span {
        width: 25px;
        height: 2px;
        background: var(--primary-white);
        margin: 3px 0;
        transition: var(--transition-smooth);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .main-shield {
        width: 80px;
        height: 80px;
    }
}

/* Impressum Page */
.imprint-page {
    padding: 8rem 0 6rem;
    min-height: 100vh;
}

.imprint-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.imprint-block h2,
.imprint-block h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.imprint-block address,
.imprint-block p {
    font-style: normal;
    color: var(--tertiary-white);
    line-height: 1.7;
}

.imprint-block a {
    color: var(--primary-white);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.imprint-block a:hover {
    color: var(--gray-light);
}

.imprint-note {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
