@import url(/global.css);

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    box-sizing: border-box;
    pointer-events: none;
}

.hero-text h1 {
    color: white;
    text-shadow: 0 0 20px #000;
    font-size: 3rem;
    pointer-events: auto;
}

.hero-title {
    max-width: 40%;
    text-align: left;
}

.hero-stats {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 10px;
}

.odometer {
    display: inline-flex;
    height: 1em;
    line-height: 1em;
    overflow: hidden;
    vertical-align: bottom;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.digit-container {
    height: 1em;
    overflow: hidden;
    display: inline-block;
}

.digit-wrapper {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.digit {
    height: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0 20px #000;
}

.features-section {
    padding: 80px 10%;
    background-color: var(--neutral-color-dark);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature-card {
    background: var(--neutral-color-base);
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border: 1px solid var(--neutral-color-light);
}

.feature-card h2 {
    color: var(--primary-color-lighter);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

/* AI Terminal Styles */
.terminal-window {
    background: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    border: 1px solid #333;
}

.terminal-header {
    background: #333;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.ai-terminal {
    background: #000;
    padding: 15px;
    height: 180px;
    overflow-y: hidden;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    position: relative;
}

.terminal-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.terminal-log {
    color: #00ff00;
    white-space: pre-wrap;
    word-break: break-all;
}

.terminal-log::before {
    content: "> ";
    color: #00ff00;
}

.feature-card img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.satellite-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.satellite-grid img {
    width: 100%;
    border-radius: 8px;
    margin-top: 0;
}

.feature-card ul {
    padding-left: 20px;
}

.feature-card ul li {
    font-weight: bold;
    margin-top: 15px;
    color: #eee;
}

.feature-card ul ul {
    padding-left: 20px;
}

.feature-card ul ul li {
    font-weight: normal;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}



.agent-features-list {
    margin-top: 15px;
}

.agent-features-list li {
    margin-top: 10px !important;
}

/* Token Visualization Styles */
.token-visualization {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.token-stream {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    padding: 12px;
    height: 150px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 4px;
    will-change: contents;
}

.token {
    display: inline-block;
    background: var(--primary-color-base);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: token-fade-in 0.25s ease-out forwards;
    white-space: nowrap;
    line-height: 1.4;
}

@keyframes token-fade-in {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tools-number.pulse {
    animation: counter-pulse 0.3s ease-out;
}

@keyframes counter-pulse {
    0% { transform: scale(1); color: var(--primary-color-lighter); }
    50% { transform: scale(1.2); color: #fff; }
    100% { transform: scale(1); color: var(--primary-color-lighter); }
}

.token-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(0, 153, 255, 0.1);
}

.tools-counter {
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.tools-label {
    color: #aaa;
    font-weight: normal;
}

.tools-number {
    color: var(--primary-color-lighter);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Table Styles for Pro Database */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

th, td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--neutral-color-light);
    font-size: 0.9rem;
}

th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--primary-color-lighter);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody td:nth-child(3) {
    color: #00ff00; /* Brighter vibrant green */
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--neutral-color-base);
    width: 100%;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10%;
}

.faq-item {
    border-bottom: 1px solid var(--neutral-color-light);
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-color-lighter);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out;
    color: #ccc;
    line-height: 1.6;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer-content {
    padding-bottom: 20px;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-content {
    transform: translateY(0);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--primary-color-lighter);
}



/* Responsive Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }
    
    .faq-question {
        font-size: 1rem;
    }

    .hero-text {
        flex-direction: column;
        justify-content: center;
        padding: 0 5%;
        text-align: center;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-title {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .features-section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        min-width: 100%;
    }
}
