/* Static pages (legal, about, landing) – @import must be first */
@import url("legal-pages.css");
@import url("about.css");
@import url("landing.css");

/* Tailwind CSS is loaded via CDN in index.html */
/* Primary color: rgba(0, 63, 112, 1) */

/** Set Font Family for Site */
body {
    font-family: Roboto, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
    color: rgba(0, 63, 112, 1);
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/** Dashboard Cards */

/* Font Awesome Pro Duotone – semantic icon colors */
.fad { --fa-secondary-opacity: 0.4; }
.icon-primary { --fa-primary-color: rgba(0, 63, 112, 1); --fa-secondary-color: rgba(0, 63, 112, 0.35); }
.icon-primary-light { --fa-primary-color: rgba(0, 63, 112, 0.9); --fa-secondary-color: rgba(0, 63, 112, 0.25); }
.icon-consensus { --fa-primary-color: #059669; --fa-secondary-color: rgba(5, 150, 105, 0.35); }   /* emerald-600 */
.icon-rebuttal { --fa-primary-color: #d97706; --fa-secondary-color: rgba(217, 119, 6, 0.35); }   /* amber-600 */
.icon-convergence { --fa-primary-color: #059669; --fa-secondary-color: rgba(5, 150, 105, 0.35); }
.icon-confidence { --fa-primary-color: #ca8a04; --fa-secondary-color: rgba(202, 138, 4, 0.35); } /* yellow-600 */
.icon-error { --fa-primary-color: #dc2626; --fa-secondary-color: rgba(220, 38, 38, 0.35); }      /* red-600 */
.icon-white { --fa-primary-color: #fff; --fa-secondary-color: rgba(255, 255, 255, 0.5); }
.icon-muted { --fa-primary-color: #9ca3af; --fa-secondary-color: rgba(156, 163, 175, 0.35); }
.icon-own-lane { --fa-primary-color: rgba(0, 63, 112, 1); --fa-secondary-color: rgba(0, 63, 112, 0.3); }
.icon-next-steps { --fa-primary-color: rgba(0, 63, 112, 1); --fa-secondary-color: rgba(0, 63, 112, 0.3); }
.icon-checked { --fa-primary-color: #059669; --fa-secondary-color: rgba(5, 150, 105, 0.35); }
.icon-addressed { --fa-primary-color: #d97706; --fa-secondary-color: rgba(217, 119, 6, 0.35); }
.icon-concessions { --fa-primary-color: #059669; --fa-secondary-color: rgba(5, 150, 105, 0.35); }

/* Markdown-rendered content */
.markdown-content {
    line-height: 1.7;
}
.markdown-content p {
    margin-bottom: 0.75rem;
}
.markdown-content p:last-child {
    margin-bottom: 0;
}
.markdown-content ul, .markdown-content ol {
    margin: 0.5rem 0 0.75rem 1.5rem;
    padding-left: 0.5rem;
}
.markdown-content li {
    margin-bottom: 0.25rem;
}
.markdown-content li > ul, .markdown-content li > ol {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
.markdown-content strong {
    font-weight: 600;
}
.markdown-content em {
    font-style: italic;
}
.markdown-content code {
    background: rgba(0, 63, 112, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}
.markdown-content pre {
    background: rgba(0, 63, 112, 0.08);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0.75rem 0;
}
.markdown-content pre code {
    background: none;
    padding: 0;
}
.markdown-content h1, .markdown-content h2, .markdown-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(0, 63, 112, 1);
}
.markdown-content h1 { font-size: 1.5rem; }
.markdown-content h2 { font-size: 1.25rem; }
.markdown-content h3 { font-size: 1.1rem; }
.markdown-content blockquote {
    border-left: 4px solid rgba(0, 63, 112, 0.5);
    margin: 0.75rem 0;
    padding-left: 1rem;
    color: #555;
}
.markdown-content hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 1rem 0;
}
.markdown-content a {
    color: rgba(0, 63, 112, 1);
    text-decoration: underline;
}
.markdown-content a:hover {
    color: rgba(0, 50, 90, 1);
}

/* Footer (from template: dark gradient, white text) */
.footer {
    background: linear-gradient(135deg, rgba(0, 63, 112, 0.95) 0%, rgba(0, 24, 38, 0.95) 100%);
    color: white;
    z-index: 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer .footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
}

@media (max-width: 768px) {
    .footer .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }
}

.footer .footer-brand .brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer .footer-brand .brand-logo i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.75rem;
    --fa-primary-color: rgba(255, 255, 255, 0.9);
    --fa-secondary-color: rgba(255, 255, 255, 0.5);
}

.footer .footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.footer .footer-brand .brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer .footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer .footer-sections {
        grid-template-columns: 1fr;
    }
}

.footer .footer-section .section-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer .footer-section .section-title i {
    color: rgba(255, 255, 255, 0.8);
    --fa-primary-color: rgba(255, 255, 255, 0.8);
    --fa-secondary-color: rgba(255, 255, 255, 0.4);
}

.footer .footer-section .section-title .me-2 {
    margin-inline-end: 0.5rem;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 0.75rem;
}

.footer .footer-links .footer-link,
.footer .footer-links a.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
}

.footer .footer-links .footer-link:hover,
.footer .footer-links a.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer .copyright i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer .copyright .me-1 {
    margin-inline-end: 0.5rem;
}

.footer .footer-actions {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .footer .footer-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.footer .footer-action-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer .footer-action-link:hover {
    color: white;
    transform: translateY(-1px);
}

.footer .footer-action-link i,
.footer .footer-action-link .me-1 {
    margin-inline-end: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Shared with Vue app: tooltips, layout, utilities, brands */
.tooltip-default {
    z-index: 50;
    white-space: normal;
    word-wrap: break-word;
    border-radius: 0.5rem;
    background-color: #111827;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    max-width: 16rem;
}

header .logo {
    height: 4rem;
}

.card-width {
    padding-right: 3rem;
}

.text-primary {
    color: rgba(0, 63, 112, 1);
}

.me-1 {
    margin-inline-end: 0.25rem;
}

.me-2 {
    margin-inline-end: 0.5rem;
}

.max-w-8xl {
    max-width: 85rem;
}

.top-32 {
    top: 7rem;
}

.google-brand {
    color: rgba(234, 67, 53, 0.9);
    font-size: 1.3rem;
}

.microsoft-brand {
    color: rgba(0, 163, 238, 1);
    font-size: 1.3rem;
}

.openai-brand {
    color: rgba(8, 8, 8, 1);
}

.anthropic-brand {
    color: rgba(20, 20, 19, 1);
}

.gemini-brand {
    color: rgba(71, 150, 227, 1);
}

.anthropic-brand,
.openai-brand,
.gemini-brand {
    font-size: 1.3rem;
    font-weight: 600;
}

