﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary: #0f172a;
    --surface: #1e293b;
    --surface2: #0d1526;
    --accent: #6366f1;
    --accent2: #06b6d4;
    --success: #4ade80;
    --muted: #94a3b8;
    --border: #334155;
    --text: #e2e8f0;
    --gradient: linear-gradient(135deg,#6366f1 0%,#06b6d4 100%);
    --radius: 12px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.7
}

/* NAV */
/*#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border)
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 500;
        transition: color 0.2s
    }

        .nav-links a:hover {
            color: #fff
        }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer
}*/

/* NAV - Standardized for Rockland Analytics - Attempt #2*/
/*#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;*/ /* Tighter padding to match brand feel */
/*}*/

/* Brand Logic */
/*.nav-brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-mark {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.15rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 0.75rem;
}

.nav-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;*/ /* Slightly smaller than homepage for sub-page utility */
    /*background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}*/

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15,23,42,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo-link {
    text-decoration: none; /*Removes underline */
    color: inherit; /* Keeps your current text color */
    display: inline-block; /* Allows padding/margin if needed */
}

.nav-mark {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.15rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
    line-height: 1;
    /*text-decoration: none;  Removes underline */
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 0.5rem;
}

.nav-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.15rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #fff;
        }


/* BREADCRUMB */
.breadcrumb {
    padding: 5.5rem 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--muted)
}

    .breadcrumb a {
        color: var(--muted);
        text-decoration: none
    }

        .breadcrumb a:hover {
            color: var(--accent2)
        }

    .breadcrumb span {
        margin: 0 0.4rem
    }

/* PAGE HERO */
.page-hero {
    padding: 6rem 2rem 4rem;
    background: radial-gradient(ellipse at top left,rgba(99,102,241,0.14) 0%,transparent 60%);
    border-bottom: 1px solid var(--border)
}

    .page-hero .container {
        max-width: 1200px;
        margin: 0 auto
    }

.badge {
    display: inline-block;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.4);
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    text-transform: uppercase
}

.page-hero h1 {
    font-size: clamp(2rem,4vw,3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 2rem
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto
}

section {
    padding: 4rem 2rem
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem
}

.section-title {
    font-size: clamp(1.5rem,2.5vw,2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem
}

.section-sub {
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-size: 0.95rem
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3)
}

    .btn-primary:hover {
        opacity: 0.88;
        transform: translateY(-1px)
    }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text)
}

    .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent)
    }

/* CARDS */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: border-color 0.25s,transform 0.25s
}

    .card:hover {
        border-color: var(--accent);
        transform: translateY(-3px)
    }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.5rem
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f5f9
}

.card p {
    font-size: 0.875rem;
    color: var(--muted)
}

/* AI TAGS */
.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.3);
    color: #67e8f9;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s
}

    .ai-tag:hover {
        background: rgba(6,182,212,0.2);
        border-color: #06b6d4;
        color: #fff
    }

    .ai-tag::before {
        content: "✦";
        font-size: 0.6rem
    }

/* GRADIENT TEXT */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

/* USE CASE PAGES */
.uc-hero {
    padding: 7rem 2rem 3rem;
    background: radial-gradient(ellipse at top,rgba(6,182,212,0.12) 0%,transparent 55%);
    border-bottom: 1px solid var(--border)
}

.uc-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem
}

.uc-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--muted)
}

    .uc-meta-item strong {
        color: var(--text)
    }

.uc-section {
    padding: 3.5rem 2rem
}

    .uc-section.alt {
        background: var(--surface2)
    }

.scenario-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 2rem
}

    .scenario-box h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #f1f5f9
    }

    .scenario-box p {
        font-size: 0.9rem;
        color: var(--muted)
    }

.code-block {
    background: #0a0f1e;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.25rem 0
}

    .code-block pre {
        font-family: 'Fira Code','Courier New',monospace;
        font-size: 0.82rem;
        color: #e2e8f0;
        line-height: 1.7;
        white-space: pre
    }

.code-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 0.5rem
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 1rem;
    margin-top: 1.5rem
}

.outcome-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center
}

    .outcome-card .metric {
        font-size: 2rem;
        font-weight: 800;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

    .outcome-card .metric-label {
        font-size: 0.78rem;
        color: var(--muted);
        margin-top: 0.25rem
    }

.steps-list {
    list-style: none;
    counter-reset: steps
}

    .steps-list li {
        counter-increment: steps;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border)
    }

        .steps-list li:last-child {
            border-bottom: none
        }

        .steps-list li::before {
            content: counter(steps,decimal-leading-zero);
            font-size: 1.4rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            flex-shrink: 0;
            line-height: 1.2
        }

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem
}

.step-content p {
    font-size: 0.85rem;
    color: var(--muted)
}

.callout {
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #c7d2fe
}

    .callout strong {
        color: #a5b4fc
    }

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.82rem
}

    footer a {
        color: var(--muted);
        text-decoration: none
    }

        footer a:hover {
            color: var(--accent2)
        }

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    animation: fadeInUp 0.7s ease both
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease,transform 0.55s ease
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #0f172a;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border)
    }

        .nav-links.open {
            display: flex
        }

    .hamburger {
        display: block
    }

    .card-grid {
        grid-template-columns: 1fr
    }
}
