@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
    --primary: #ff6b35;
    --secondary: #2ecc71;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --accent: #e74c3c;
    --pixel-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 110px;
}

/* Pixel art background pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Tetris-style pixel decorations */
.tetris-piece {
    position: fixed;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* L-piece */
.tetris-l {
    width: 50px;
    height: 50px;
    background: var(--primary);
    box-shadow:
        50px 0 var(--primary),
        100px 0 var(--primary),
        100px 50px var(--primary);
    left: 15%;
    animation: fall-straight 20s infinite linear;
}

/* T-piece */
.tetris-t {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    box-shadow:
        -50px 0 var(--secondary),
        50px 0 var(--secondary),
        0 50px var(--secondary);
    left: 40%;
    animation: fall-straight 22s infinite linear;
    animation-delay: 3s;
}

/* S-piece */
.tetris-s {
    width: 50px;
    height: 50px;
    background: var(--accent);
    box-shadow:
        50px 0 var(--accent),
        0 50px var(--accent),
        -50px 50px var(--accent);
    left: 65%;
    animation: fall-straight 24s infinite linear;
    animation-delay: 7s;
}

/* Square piece */
.tetris-square {
    width: 50px;
    height: 50px;
    background: #9b59b6;
    box-shadow:
        50px 0 #9b59b6,
        0 50px #9b59b6,
        50px 50px #9b59b6;
    left: 80%;
    animation: fall-straight 21s infinite linear;
    animation-delay: 11s;
}

/* Line piece */
.tetris-line {
    width: 50px;
    height: 50px;
    background: #3498db;
    box-shadow:
        0 50px #3498db,
        0 100px #3498db,
        0 150px #3498db;
    left: 25%;
    animation: fall-straight 23s infinite linear;
    animation-delay: 14s;
}

@keyframes fall-straight {
    0% {
        transform: translateY(-250px);
        opacity: 0;
    }
    2% {
        opacity: 0.06;
    }
    98% {
        opacity: 0.06;
    }
    100% {
        transform: translateY(calc(100vh + 250px));
        opacity: 0;
    }
}

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

/* Header */
header {
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 20px 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background: var(--light);
    margin: 6px auto;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.hamburger:hover span {
    background: var(--primary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    border-right: 2px solid var(--primary);
    padding: 100px 30px 30px;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    color: var(--light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-menu .cta-button {
    margin-top: 30px;
    width: 100%;
}

/* Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.logo-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--pixel-shadow);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid var(--secondary);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 30px;
    position: relative;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.8);
    }
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    position: relative;
    color: var(--primary);
    display: inline-block;
}

.hero h1 .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.3;
    transform: skewX(-20deg);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0 50px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: block;
}

.countdown-separator {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.5;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* WIP Badge */
.wip-badge-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.wip-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary);
    padding: 15px 25px;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 0px rgba(255, 107, 53, 0.3);
}

.wip-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.wip-badge:hover::before {
    left: 100%;
}

.wip-badge:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.15);
}

.wip-icon {
    font-size: 24px;
}

.wip-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.wip-text strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: var(--primary);
}

.wip-text small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.wip-arrow {
    font-size: 20px;
    color: var(--primary);
    animation: slide-arrow 1s ease-in-out infinite;
}

@keyframes slide-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--light);
    color: var(--dark);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.05;
    top: -100px;
    right: -100px;
    transform: rotate(45deg);
}

.features::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    opacity: 0.05;
    bottom: -75px;
    left: -75px;
    transform: rotate(45deg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(1);
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%)
        saturate(743%) hue-rotate(333deg) brightness(103%)
        contrast(101%);
}

.feature-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Punchline Section */
.punchline {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.punchline::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 10px,
        var(--accent) 10px,
        var(--accent) 20px
    );
    opacity: 0.02;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

.punchline h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    background: linear-gradient(
        135deg,
        var(--light),
        var(--primary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 60px auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

footer a:hover {
    color: var(--primary) !important;
}

/* Work In Peace Section */
.work-in-peace {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(46, 204, 113, 0.05));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.work-in-peace::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.05) 10px,
        rgba(255, 107, 53, 0.05) 20px
    );
    top: -200px;
    right: -200px;
    animation: rotate 120s linear infinite;
}

.wip-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--pixel-shadow);
}

.wip-demo-container {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.project-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--primary);
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: left;
    box-shadow: 8px 8px 0px rgba(255, 107, 53, 0.3);
    position: relative;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.project-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.project-status {
    background: rgba(231, 76, 60, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--accent);
}

.project-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.time-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.time-value {
    font-weight: 600;
    color: var(--secondary);
}

.project-message p {
    margin: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.wip-benefits {
    max-width: 1000px;
    margin: 80px auto;
}

.wip-benefits h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-icon i {
    color: var(--primary);
}

.benefit-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--light);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.wip-cta {
    margin-top: 60px;
}

/* Sprint Smart Section */
.sprint-smart {
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.5);
    position: relative;
    overflow: hidden;
}

.sprint-smart::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(46, 204, 113, 0.03) 20px,
        rgba(46, 204, 113, 0.03) 40px
    );
    top: -250px;
    left: -250px;
    animation: rotate 180s linear infinite reverse;
}

.sprint-header {
    text-align: center;
    margin-bottom: 80px;
}

.sprint-limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.limit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.limit-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
}

.limit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.limit-card:hover::before {
    transform: translateX(0);
}

.limit-icon {
    margin-bottom: 20px;
}

.limit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light);
}

.limit-value {
    margin-bottom: 20px;
}

.big-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.limit-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.limit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.sprint-philosophy {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
}

.sprint-philosophy h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--light);
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.philosophy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.philosophy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid var(--secondary);
    flex-shrink: 0;
}

.philosophy-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.sprint-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.task-overflow-demo {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.demo-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.demo-status {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
}

.demo-status.bad {
    background: rgba(231, 76, 60, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.demo-status.good {
    background: rgba(46, 204, 113, 0.2);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid;
}

.task-item.overloaded {
    border-color: var(--accent);
}

.task-item.manageable {
    border-color: var(--secondary);
}

.task-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.task-time {
    font-size: 14px;
    font-weight: 600;
}

.task-item.overloaded .task-time {
    color: var(--accent);
}

.task-item.manageable .task-time {
    color: var(--secondary);
}

.vs-arrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.sprint-cta {
    text-align: center;
}

/* Use Cases Section */
.use-cases {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.persona-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.persona-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.persona-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-avatar img {
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(1);
}

.persona-card:hover .persona-avatar img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(743%) hue-rotate(333deg) brightness(103%) contrast(101%);
}

.persona-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.persona-pain {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-style: italic;
}

.persona-solution {
    color: var(--secondary);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
}

.step-arrow {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.5;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--pixel-shadow);
}

.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Security Section */
.security {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(255, 107, 53, 0.05));
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(1);
    transition: filter 0.3s ease;
}

.security-item:hover .security-icon img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(743%) hue-rotate(333deg) brightness(103%) contrast(101%);
}

.security-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--light);
}

.security-item p {
    color: rgba(255, 255, 255, 0.7);
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent);
    text-align: center;
}

/* Waitlist Form */
.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Privacy Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--dark);
    border: 2px solid var(--primary);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--light);
}

.privacy-highlight {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid var(--secondary);
}

.privacy-highlight h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-top: 20px;
    color: var(--secondary);
}

.privacy-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.privacy-point p {
    margin: 0;
    font-size: 16px;
}

.privacy-philosophy {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--primary);
}

.privacy-philosophy h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.privacy-philosophy p {
    margin: 15px 0;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.form-input option {
    background: var(--dark);
    color: var(--light);
}

/* Language Switcher - Desktop */
.language-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    display: flex;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--light);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.lang-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* Language Switcher - Mobile Menu */
.mobile-language-switcher {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-language-switcher .lang-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mobile-language-switcher .lang-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
}

.mobile-language-switcher .lang-btn::after {
    display: none;
}

.mobile-language-switcher .lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-visual {
        order: -1;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-number {
        font-size: 40px;
    }
    
    .countdown-separator {
        display: none;
    }
    
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .wip-badge {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .wip-text strong {
        font-size: 16px;
    }
    
    .wip-text small {
        font-size: 11px;
    }
    
    .sprint-limits-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
    }
    
    .sprint-demo {
        flex-direction: column;
    }
    
    .vs-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .task-overflow-demo {
        max-width: 100%;
    }

    .language-switcher {
        display: none;
    }
    
    .mobile-language-switcher {
        display: block;
    }
}

/* Retro pixel transitions */
.pixel-transition {
    position: relative;
    overflow: hidden;
}

.pixel-transition::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        var(--primary) 2px,
        var(--primary) 4px
    );
    transition: left 0.3s ease;
    opacity: 0.1;
}

.pixel-transition:hover::after {
    left: 100%;
}