/* Ares Networks — shared site styles.
   Linked by index.html, platform.html, pricing.html.
   Pricing-page-only rules live in pricing.css. */

:root {
    --bg:            #020617;
    --panel:         #0f172a;
    --panel-alt:     rgba(15, 23, 42, 0.5);
    --border:        #334155;
    --border-soft:   #1e293b;
    --border-strong: #475569;
    --accent:        #22d3ee;
    --accent-strong: #06b6d4;
    --accent-hover:  #0891b2;
    --accent-light:  #67e8f9;
    --text:          #f1f5f9;
    --text-2:        #cbd5e1;
    --muted:         #94a3b8;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a:any-link {
    text-decoration: none;
    color: var(--accent);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    width: 3rem;
    height: 3rem;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links button {
    background: none;
    border: none;
    color: var(--text-2);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-links button:hover {
    color: white;
}

.nav-links button.active {
    color: var(--accent);
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: var(--text-2);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border-soft);
    background-color: var(--bg);
    padding: 1rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-2);
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-menu button:hover {
    color: white;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-button {
        display: none;
    }
    .nav-logo span {
        font-size: 2.25rem;
    }
}

/* Sections */
section {
    padding: 5rem 1rem;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 4rem;
    text-align: center;
}

/* Hero Section */
#home {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-image: url('../img/ares-networks-banner.jpg');
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: darken;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-2);
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.button-group .marketplace-badge {
    margin-top: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-strong);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-2);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 1px solid var(--border-strong);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: white;
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .button-group .marketplace-badge {
        margin-top: 0;
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.card {
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: rgba(34, 211, 238, 0.5);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--muted);
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon,
.stop-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* Background Variants */
.bg-slate-900 {
    background-color: var(--panel-alt);
}

/* Team Cards */
.team-card {
    background-color: var(--panel);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
}

.team-name {
    font-weight: bold;
    color: white;
}

.team-role {
    font-size: 0.875rem;
    color: var(--accent);
    margin: 0.5rem 0;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Contact Form */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: var(--border-soft);
    border: 1px solid var(--border-strong);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-textarea {
    resize: vertical;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted);
}

.contact-value {
    color: var(--accent);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--accent-light);
}

.contact-text {
    color: white;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-soft);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--muted);
}

footer p {
    margin-bottom: 0.5rem;
}

footer .small {
    font-size: 0.875rem;
}

/* Utility Classes */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }

/* SVG Icons - Using inline SVG for Lucide icons */
.icon {
    display: inline-block;
    vertical-align: middle;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Availability / productization elements
   ========================================================================== */

/* Hero eyebrow — the GA statement above the H1 */
.ga-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 1.5rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--accent);
    border-radius: 2rem;
    background: rgba(34, 211, 238, 0.08);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

.ga-eyebrow .ga-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.hero-eyebrow-wrap { text-align: center; }

/* Marketplace note under the hero buttons */
.marketplace-note {
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

.marketplace-note strong { color: var(--text-2); font-weight: 600; }

/* --- Availability & delivery band --- */
.availability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .availability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .availability-grid { grid-template-columns: repeat(3, 1fr); }
}

.fact {
    background: var(--panel);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0.75rem;
    padding: 1.25rem 1.4rem;
}

.fact-label {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.fact-value { color: var(--text-2); font-size: 0.98rem; line-height: 1.6; }
.fact-value strong { color: var(--text); font-weight: 600; }

/* --- Proof band: deployments & partners --- */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

.proof-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.75rem;
}

.proof-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 1rem;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.proof-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.proof-card p { color: var(--text-2); line-height: 1.7; }

/* Partner / affiliation strip */
.partner-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-soft);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.partner-item img { display: block; }
.partner-item span { color: var(--muted); font-size: 0.85rem; max-width: 15rem; }

/* --- Product screenshots --- */
.shot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .shot-grid { grid-template-columns: repeat(2, 1fr); }
}

.shot figure { margin: 0; }

.shot img,
.shot .shot-placeholder {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    display: block;
}

/* Placeholder stands in until real captures are exported. */
.shot-placeholder {
    aspect-ratio: 16 / 10;
    background:
        repeating-linear-gradient(45deg,
            rgba(34, 211, 238, 0.04) 0 12px,
            transparent 12px 24px),
        var(--panel);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted);
    text-align: center;
    padding: 1.5rem;
}

.shot-placeholder .ph-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
}

.shot-placeholder .ph-note { font-size: 0.85rem; }

.shot figcaption {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: center;
}

/* --- Intro video --- */
.video-wrap {
    max-width: 56rem;
    margin: 3rem auto 0;
}

.video-wrap video {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    display: block;
    background: #000;
}

.video-wrap figcaption {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

/* --- Milestone timeline (About) --- */
.timeline { list-style: none; margin: 0 0 1.5rem; padding: 0; }

.timeline li {
    position: relative;
    padding: 0 0 1.4rem 1.75rem;
    border-left: 1px solid var(--border);
    color: var(--text-2);
    line-height: 1.65;
}

.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }

.timeline li::before {
    content: "";
    position: absolute;
    left: -0.3rem;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--border-strong);
}

.timeline li.is-now::before {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
}

.timeline .t-year {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

/* Inline contact fallback link */
.contact-direct {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-direct a { color: var(--accent); text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }
