/* remarqable.io — site overrides (loaded after sparq-base.css) */

:root {
    --accent: #9333ea;
    --accent-hover: #a855f7;
}

/* Utility classes */
.text-accent { color: var(--accent) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.border-accent { border-color: var(--accent) !important; }

/* Layout */
.container {
    max-width: 800px;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
}

/* Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-q {
    color: var(--accent);
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Hero section */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.hero .location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Product card */
.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--bg);
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-card .product-logo {
    height: 32px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-card .product-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.product-card .product-link:hover {
    color: var(--accent-hover);
}

/* Section headings */
section h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Approach list */
.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.approach-list li::before {
    content: "\2022";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    margin-top: 4rem;
}
