/* Landing Page Styles - Custom styling for login.html */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');

/* Root Variables */
:root {
    --carbon: #0A0A0A;
    --off-white: #F0F2F5;
    --tech-grey: #E0E0E0;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--off-white);
    color: var(--carbon);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-mono {
    font-family: 'Space Mono', monospace;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    background-color: var(--off-white);
    border-bottom: 1px solid rgba(10, 10, 10, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo-main {
    height: 20px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    header {
        padding: 1.5rem 5rem;
    }

    .header-logo-main {
        height: 24px;
    }
}

/* Login Box */
.login-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.login-box input {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    border: 1px solid rgba(10, 10, 10, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 0.125rem;
    background: transparent;
    transition: all 0.3s;
}

.login-box input:focus {
    outline: none;
    background-color: rgba(10, 10, 10, 0.05);
}

.login-box button {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    background-color: var(--carbon);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.125rem;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.login-box button:hover {
    background-color: rgba(10, 10, 10, 0.8);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.85;
    text-align: center;
    mix-blend-mode: darken;
    position: relative;
    z-index: 2;
}

/* Smoke canvas effect */
.smoke-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(10, 10, 10, 0.5);
    z-index: 3;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 8rem;
    }
}

/* Manifesto Section */
.manifesto-section {
    padding: 8rem 1.5rem;
    background-color: var(--off-white);
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(10, 10, 10, 0.05);
}

@media (min-width: 768px) {
    .manifesto-section {
        padding: 10rem 5rem;
    }
}

.manifesto-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.manifesto-hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--carbon);
}

@media (min-width: 768px) {
    .manifesto-hero-title {
        font-size: 3.5rem;
        margin-bottom: 4rem;
    }
}

.manifesto-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.manifesto-text {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.85;
    color: var(--carbon);
}

@media (min-width: 768px) {
    .manifesto-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

/* Spec Projects Section */
.specs-section {
    padding: 6rem 0;
    background-color: #0A0A0A;
    color: var(--off-white);
    overflow: hidden;
    position: relative;
}

.specs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 2rem;
}

@media (min-width: 768px) {
    .specs-header {
        padding: 0 5rem 2rem;
    }
}

.specs-title {
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.specs-status {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    display: none;
}

@media (min-width: 768px) {
    .specs-status {
        display: block;
    }
}

/* Projects Infinite Scroll */
.projects-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.projects-container {
    display: flex;
    gap: 0;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
}

.projects-container:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.project-card {
    background-color: var(--carbon);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    width: 320px;
    flex-shrink: 0;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-header {
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
}

.project-id {
    font-family: 'Space Mono', monospace;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.project-status {
    display: flex;
    gap: 0.25rem;
}

.status-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.status-dot.active {
    background-color: #22C55E;
}

.status-dot.inactive {
    background-color: rgba(255, 255, 255, 0.2);
}

.project-image {
    position: relative;
    aspect-ratio: 2.35/1;
    overflow: hidden;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.project-card:hover .project-image {
    filter: grayscale(0);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.7s;
}

.project-card:hover .project-image img {
    opacity: 1;
    transform: scale(1.05);
}

.project-info {
    padding: 0.75rem;
    background-color: var(--carbon);
}

.project-name {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.25rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
}

/* Founders Section */
.founders-section {
    padding: 8rem 1.5rem;
    background-color: var(--off-white);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .founders-section {
        padding: 8rem 5rem;
    }
}

.founders-title {
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .founders-grid > :nth-child(2) {
        margin-top: 4rem;
    }
}

.founder-card {
    position: relative;
}

.founder-image-container {
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--tech-grey);
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(110%);
}

.founder-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--carbon);
    color: white;
    font-size: 10px;
    font-family: 'Space Mono', monospace;
    padding: 0.25rem 0.5rem;
    border-radius: 0.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(10, 10, 10, 0.8);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.highlight-dot.filled {
    background-color: var(--carbon);
}

.highlight-dot.outlined {
    background-color: transparent;
    border: 1px solid var(--carbon);
}

.highlight-text {
    border-bottom: 1px solid rgba(10, 10, 10, 0.2);
    padding-bottom: 0.125rem;
}

.founder-bio {
    font-size: 0.875rem;
    line-height: 1.625;
    opacity: 0.8;
    border-left: 2px solid rgba(10, 10, 10, 0.1);
    padding-left: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Footer */
footer {
    padding: 6rem 1.5rem;
    background-color: var(--carbon);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    footer {
        padding: 6rem 5rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 6rem;
    }
}

.footer-email {
    font-size: 1.25rem;
    font-family: 'Space Mono', monospace;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    display: inline-block;
    padding-bottom: 0.25rem;
    transition: all 0.3s;
}

.footer-email:hover {
    color: white;
    border-bottom-color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    gap: 1.5rem;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .footer-links {
        align-items: flex-end;
    }
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    opacity: 0.3;
}

.footer-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
    background-size: 40px 40px;
}
