/* User Intuition - Terminal Style Landing Page */

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

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background-color: #1a1d29;
    color: #e4e6ea;
    line-height: 1.6;
    padding: 20px;
    font-size: 14px;
    overflow-x: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.terminal-header {
    border: 2px solid #f59e0b;
    padding: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow-x: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* vertical centering */
    height: 100%; /* ensure it can center vertically if needed */
}

.cursor {
    display: inline-block;
    background-color: #f59e0b;
    color: #1a1d29;
    animation: blink 1s infinite;
}

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

.ascii-title {
    font-family: 'Press Start 2P', 'Courier New', 'Lucida Console', 'Monaco', 'Consolas', monospace;
    font-size: 48px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
    color: #f59e0b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    image-rendering: pixelated;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: none;
    line-height: 100px;
}

.metadata {
    margin: 20px 0;
    font-size: 12px;
}

.metadata-line {
    margin-bottom: 5px;
}

.metadata-label {
    color: #e4e6ea;
    display: inline-block;
    width: 200px;
}

.metadata-value {
    color: #f59e0b;
}

.section {
    margin-bottom: 60px;
    border-left: 2px solid #f59e0b;
    padding-left: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f59e0b;
}

.section-content {
    margin-bottom: 15px;
}

.highlight {
    background-color: #f59e0b;
    color: #1a1d29;
    padding: 2px 4px;
}

.terminal-list {
    margin: 15px 0;
}

.terminal-list li {
    list-style: none;
    margin-bottom: 8px;
}

.terminal-list li:before {
    content: "> ";
    color: #f59e0b;
}

.pricing-terminal {
    border: 2px solid #f59e0b;
    padding: 20px;
    margin: 20px 0;
}

.pricing-header {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-amount {
    color: #f59e0b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ascii-divider {
    margin: 30px 0;
    text-align: center;
    color: #f59e0b;
}

.process-step {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #f59e0b;
}

.step-number {
    background-color: #f59e0b;
    color: #1a1d29;
    padding: 2px 8px;
    font-weight: 700;
    margin-right: 10px;
}

.founder-terminal {
    border: 2px solid #f59e0b;
    padding: 30px;
    margin: 40px 0;
    background-color: #242937;
}

.terminal-quote {
    font-style: italic;
    margin: 20px 0;
    padding: 15px;
    border-left: 4px solid #f59e0b;
    background-color: #1a1d29;
}

.cta-terminal {
    border: 3px solid #f59e0b;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    background-color: #242937;
}

.terminal-button {
    display: inline-block;
    border: 2px solid #f59e0b;
    background-color: #1a1d29;
    color: #f59e0b;
    padding: 10px 20px;
    text-decoration: none;
    font-family: inherit;
    margin: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.terminal-button:hover {
    background-color: #f59e0b;
    color: #1a1d29;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #f59e0b;
    padding-bottom: 15px;
}

.faq-q {
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-q:before {
    content: "Q: ";
    color: #f59e0b;
}

.faq-a:before {
    content: "A: ";
    color: #f59e0b;
    font-weight: 700;
}

.terminal-footer {
    border-top: 2px solid #f59e0b;
    padding-top: 30px;
    text-align: center;
    margin-top: 60px;
}

.blinking-text {
    animation: blink 2s infinite;
}

.accent-emphasis {
    color: #f59e0b;
    font-weight: 700;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 29, 41, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border: 3px solid #f59e0b;
    width: 90%;
    max-width: 800px;
    height: 90%;
    position: relative;
    border-radius: 8px;
}

.modal-header {
    background-color: #242937;
    padding: 15px 20px;
    border-bottom: 2px solid #f59e0b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: #f59e0b;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.close {
    color: #f59e0b;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    font-family: inherit;
}

.close:hover {
    color: #e4e6ea;
}

.modal-body {
    padding: 0;
    height: calc(100% - 60px);
    background: #fff;
}

.calendar-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    frameborder: 0;
}

.founder-bio-flex {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.founder-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    background: #fff;
    flex-shrink: 0;
}

.founder-bio-content {
    flex: 1;
}

.good-company-section {
    border: 2px solid #f59e0b;
    padding: 30px;
    margin: 40px 0;
    background-color: #242937;
    border-radius: 0;
    text-align: center;
}

.good-company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.company-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.company-logo-link:hover {
    transform: scale(1.05);
}

.company-logo-svg {
    height: 60px;
    max-width: 260px;
    width: auto;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 13px;
    }
    
    .container {
        padding: 0;
    }
    
    .metadata-label {
        width: 150px;
    }
    
    .ascii-title {
        font-size: 12px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        height: 85%;
    }
    
    .terminal-header {
        padding: 15px;
    }
    
    .section {
        padding-left: 15px;
    }
    
    .founder-terminal,
    .cta-terminal {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ascii-title {
        font-size: 10px;
    }
    
    .metadata-label {
        width: 120px;
    }
    
    .terminal-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .founder-bio-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .founder-image {
        width: 120px;
        height: 120px;
    }
    .founder-bio-content {
        text-align: center;
    }
    .good-company-logos {
        flex-direction: column;
        gap: 24px;
    }
    .company-logo-svg {
        height: 40px;
        max-width: 180px;
    }
}