/* --- Basic Setup & Variables --- */
:root {
    --background-color: #ffffff;
    --text-color: #1a1a1a;
    --primary-color: #007aff; /* A modern blue for CTAs, can be changed */
    --border-color: #e0e0e0;
    --card-background: #f9f9f9;
    --footer-background: #1a1a1a;
    --footer-text: #cccccc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Reusable Components --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    text-align: center;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.button-primary {
    background-color: var(--text-color);
    color: var(--background-color);
    border: 2px solid var(--text-color);
}

.button-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--background-color);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo-tagline {
    font-size: 0.9rem;      /* Smaller font size */
    font-weight: 400;     /* Normal font weight (not bold) */
    color: #666;           /* A slightly lighter grey for subtlety */
    vertical-align: middle; /* Helps align it nicely with the main text */
    margin-left: 5px;       /* Adds a little space */
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
}
.hero h1 {
    margin-bottom: 20px;
}
.hero p {
    margin-bottom: 30px;
}

/* --- Demo Video Section --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Agents Section --- */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.agent-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.agent-icon { margin-bottom: 20px; }
.agent-icon svg { width: 32px; height: 32px; color: var(--text-color); }
.agent-title { font-weight: 600; color: #555; margin-bottom: 20px; }
.agent-card ul {
    list-style-type: none;
    padding-left: 0;
}
.agent-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.agent-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}
.agent-card li strong {
    display: block;
    color: var(--text-color);
}

/* --- Command Center --- */
.command-center { background-color: var(--card-background); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}
.feature-item {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

/* --- Integrations Section --- */
.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
}
.logo-item {
    font-size: 1.2rem;
    font-weight: 600;
}

/* --- CTA Section --- */
.cta {
    background-color: var(--text-color);
    color: var(--background-color);
}
.cta h2, .cta p {
    color: var(--background-color);
}
.cta .button-primary {
    background-color: var(--background-color);
    color: var(--text-color);
    border-color: var(--background-color);
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 20px;
}

/* --- Footer --- */
.footer {
    background-color: var(--footer-background);
    color: var(--footer-text);
    padding: 30px 0;
    text-align: center;
}
.footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .agents-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .navbar { flex-direction: column; gap: 15px; }
}