/* Landing Page Specific Styles */

body {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    max-width: 1600px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 0;
    border: 4px solid #000000;
    box-shadow: 6px 6px 0px #1F6FEB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1F6FEB;
    letter-spacing: -2px;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 50px 40px;
    gap: 40px;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.main-column {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.roadmap-column {
    flex: 0 0 30%;
    position: sticky;
    top: 40px;
    align-self: flex-start;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #24292f;
    letter-spacing: -0.5px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}

.star-text {
    color: #C9A359;
    font-weight: 900;
}

.hero-description {
    font-size: 1.2rem;
    color: #57606a;
    line-height: 1.7;
    max-width: 600px;
    margin: 24px 0 0 0;
}

.hero-description strong {
    color: #24292f;
    font-weight: 800;
}

.open-source-text {
    font-size: 1.2rem;
    color: #57606a;
    margin: 16px 0 0 0;
    line-height: 1.7;
    max-width: 600px;
}

.github-link {
    color: #1F6FEB;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.15s ease;
}

.github-link:hover {
    color: #000000;
    text-decoration-thickness: 3px;
}

/* Roadmap Styles */
.roadmap-content {
    background: #f6f8fa;
    border: 4px solid #000000;
    padding: 30px 24px;
    box-shadow: 8px 8px 0px #1F6FEB;
}

.roadmap-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #24292f;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.current-users {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 24px;
    background: #ffffff;
    border: 3px solid #000000;
    gap: 4px;
}

.users-count {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1F6FEB;
    line-height: 1;
    letter-spacing: -1px;
}

.users-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #57606a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border: 3px solid #000000;
    transition: all 0.15s ease;
}

.roadmap-item:hover {
    transform: translate(2px, 2px);
    box-shadow: -2px -2px 0px #1F6FEB;
}

.milestone-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1F6FEB;
    border: 2px solid #000000;
    color: #ffffff;
    font-size: 1.2rem;
}

.milestone-content {
    flex: 1;
}

.milestone-users {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1F6FEB;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.milestone-feature {
    font-size: 0.95rem;
    color: #57606a;
    font-weight: 600;
    line-height: 1.3;
}

/* In Progress Roadmap Item */
.roadmap-item.in-progress {
    background: linear-gradient(135deg, #fff8e6 0%, #ffffff 100%);
    border-color: #C9A359;
    box-shadow: 4px 4px 0px #C9A359;
}

.roadmap-item.in-progress:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #C9A359;
}

.roadmap-item.in-progress .milestone-marker {
    background: #C9A359;
    animation: pulse 2s ease-in-out infinite;
}

.roadmap-item.in-progress .milestone-users {
    color: #C9A359;
}

.milestone-status {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: #C9A359;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #000000;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Screenshots Section */
.screenshots-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    width: 100%;
}

.screenshot-placeholder {
    aspect-ratio: 9 / 19.5;
    background: #e5e8eb;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #57606a;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0px #000000;
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.screenshot-placeholder:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px #000000;
}

.screenshot-placeholder:nth-child(2) {
    box-shadow: 8px 8px 0px #000000;
}

.screenshot-placeholder:nth-child(2):hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px #000000;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #1F6FEB;
    border: 4px solid #000000;
    border-radius: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 6px 6px 0px #000000;
}

.store-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px #000000;
}

.store-button.secondary {
    background-color: #7a2dfa;
    box-shadow: 6px 6px 0px #000000;
}

.store-button.secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px #000000;
}

.store-button.disabled {
    background-color: #8c959f;
    box-shadow: 6px 6px 0px #000000;
    cursor: not-allowed;
    pointer-events: none;
}

.store-button.disabled:hover {
    background-color: #8c959f;
    color: #ffffff;
    transform: none;
    box-shadow: 6px 6px 0px #000000;
}

.store-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    padding: 25px 40px;
    text-align: center;
    border-top: 3px solid #1F6FEB;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: #57606a;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.1s ease;
    line-height: 1;
}

.footer-links a:hover {
    color: #1F6FEB;
    text-decoration-thickness: 3px;
}

.footer-text {
    color: #656d76;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1;
}

.footer-name-link {
    color: #57606a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-name-link:hover {
    color: #1F6FEB;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-area {
    animation: fadeInUp 0.4s ease 0s backwards;
}

.hero-title {
    animation: fadeInUp 0.4s ease 0.1s backwards;
}

.hero-description {
    animation: fadeInUp 0.5s ease 0.2s backwards;
}

.open-source-text {
    animation: fadeInUp 0.5s ease 0.25s backwards;
}

.store-buttons {
    animation: fadeInUp 0.5s ease 0.3s backwards;
}

.screenshots-section {
    animation: fadeInUp 0.5s ease 0.4s backwards;
}

.roadmap-column {
    animation: fadeInRight 0.5s ease 0.5s backwards;
}

.footer {
    animation: fadeInUp 0.4s ease 0.6s backwards;
}

/* Prevent text selection for cleaner look */
.screenshot-placeholder {
    user-select: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 30px 40px 40px;
        gap: 40px;
    }

    .main-column {
        flex: 1;
        width: 100%;
        gap: 50px;
    }

    .roadmap-column {
        flex: 1;
        width: 100%;
        position: relative;
        top: 0;
    }

    .roadmap-content {
        padding: 26px 20px;
        box-shadow: 6px 6px 0px #1F6FEB;
    }

    .roadmap-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .current-users {
        padding: 18px;
        margin-bottom: 20px;
    }

    .users-count {
        font-size: 2.2rem;
    }

    .users-label {
        font-size: 0.8rem;
    }

    .roadmap-items {
        gap: 16px;
    }

    .roadmap-item {
        padding: 14px;
    }

    .milestone-marker {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .milestone-users {
        font-size: 1rem;
    }

    .milestone-feature {
        font-size: 0.9rem;
    }

    .milestone-status {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .logo-area {
        margin-bottom: 0;
    }

    .app-icon {
        width: 60px;
        height: 60px;
        border-radius: 0;
    }

    .app-name {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .open-source-text {
        font-size: 1.1rem;
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 450px;
        gap: 20px;
    }

    .store-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 14px;
    }

    .store-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 25px 35px;
        gap: 35px;
    }

    .main-column {
        gap: 45px;
    }

    .roadmap-content {
        padding: 22px 18px;
        border-width: 3px;
        box-shadow: 4px 4px 0px #1F6FEB;
    }

    .roadmap-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .current-users {
        padding: 16px;
        margin-bottom: 18px;
        border-width: 2px;
    }

    .users-count {
        font-size: 2rem;
    }

    .users-label {
        font-size: 0.75rem;
    }

    .roadmap-items {
        gap: 14px;
    }

    .roadmap-item {
        padding: 12px;
        border-width: 2px;
    }

    .milestone-marker {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .milestone-users {
        font-size: 0.95rem;
    }

    .milestone-feature {
        font-size: 0.85rem;
    }

    .milestone-status {
        font-size: 0.6rem;
        padding: 3px 7px;
        margin-top: 6px;
    }

    .logo-area {
        margin-bottom: 0;
    }

    .app-icon {
        width: 50px;
        height: 50px;
        border-radius: 0;
        border-width: 3px;
        box-shadow: 4px 4px 0px #1F6FEB;
    }

    .app-name {
        font-size: 2.5rem;
    }

    .hero-content {
        gap: 0;
    }

    .hero-description {
        margin-top: 18px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
        gap: 0.25em;
        margin-bottom: 0;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    .open-source-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 14px;
        padding: 0 10px;
    }

    .screenshot-placeholder {
        border-radius: 0;
        box-shadow: 4px 4px 0px #000000;
    }

    .screenshot-placeholder:nth-child(2) {
        box-shadow: 4px 4px 0px #000000;
    }

    .screenshot-placeholder img {
        border-radius: 0;
    }

    .store-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        padding: 0 15px;
    }

    .store-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        border-radius: 0;
        border-width: 3px;
        box-shadow: 4px 4px 0px #000000;
    }

    .store-button:hover {
        box-shadow: 2px 2px 0px #000000;
    }

    .store-icon {
        font-size: 1.4rem;
    }

    .footer {
        padding: 25px 25px 30px;
    }

    .footer-content {
        gap: 12px;
    }

    .footer-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 25px 20px 30px;
        gap: 30px;
    }

    .main-column {
        gap: 35px;
    }

    .roadmap-content {
        padding: 18px 14px;
        border-width: 2px;
        box-shadow: 3px 3px 0px #1F6FEB;
    }

    .roadmap-title {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .current-users {
        padding: 14px;
        margin-bottom: 16px;
        border-width: 2px;
    }

    .users-count {
        font-size: 1.8rem;
    }

    .users-label {
        font-size: 0.7rem;
    }

    .roadmap-items {
        gap: 12px;
    }

    .roadmap-item {
        padding: 10px;
        gap: 12px;
    }

    .milestone-marker {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        border-width: 2px;
    }

    .milestone-users {
        font-size: 0.9rem;
    }

    .milestone-feature {
        font-size: 0.8rem;
    }

    .milestone-status {
        font-size: 0.55rem;
        padding: 2px 6px;
        margin-top: 5px;
    }

    .logo-area {
        gap: 12px;
        margin-bottom: 0;
    }

    .app-icon {
        width: 44px;
        height: 44px;
        border-radius: 0;
        border-width: 2px;
        box-shadow: 3px 3px 0px #1F6FEB;
    }

    .app-name {
        font-size: 2rem;
    }

    .hero-content {
        gap: 0;
    }

    .hero-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
        margin-bottom: 0;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.65;
        padding: 0 5px;
    }

    .open-source-text {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 10px;
        padding: 0 5px;
    }

    .screenshot-placeholder {
        border-radius: 0;
        box-shadow: 3px 3px 0px #000000;
    }

    .screenshot-placeholder:nth-child(2) {
        box-shadow: 3px 3px 0px #000000;
    }

    .screenshot-placeholder img {
        border-radius: 0;
    }

    .store-buttons {
        max-width: 100%;
        padding: 0 10px;
        gap: 10px;
    }

    .store-button {
        padding: 14px 26px;
        font-size: 0.95rem;
        border-radius: 0;
        border-width: 2px;
        box-shadow: 3px 3px 0px #000000;
    }

    .store-button:hover {
        box-shadow: 2px 2px 0px #000000;
    }

    .store-icon {
        font-size: 1.3rem;
    }

    .footer {
        padding: 20px 20px 25px;
    }

    .footer-content {
        gap: 10px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-text {
        font-size: 0.7rem;
    }
}
