/* Granger AI Consulting — Styles */
:root {
    --bg: #0a0a0f;
    --surface: #141420;
    --text: #e0e0e8;
    --muted: #8888a0;
    --accent: #7c5ce7;
    --accent-glow: #9b7cf0;
    --border: #2a2a3a;
    --radius: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.tagline {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Packages */
.packages {
    margin-bottom: 4rem;
}

.packages h2, .about h2, .contact h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #fff;
}

.package {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.package.featured {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(124, 92, 231, 0.15);
}

.package h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-glow);
    margin-bottom: 1rem;
}

.package p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.package ul {
    list-style: none;
    padding: 0;
}

.package li {
    padding: 0.3rem 0;
    color: var(--text);
}

.package li::before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
}

/* About */
.about {
    margin-bottom: 4rem;
}

.about p {
    color: var(--muted);
    margin-bottom: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Contact */
.contact {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
}

.contact p {
    color: var(--muted);
    margin-bottom: 0.75rem;
}

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

.contact a:hover {
    text-decoration: underline;
}

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

footer a {
    color: var(--muted);
    text-decoration: none;
}

footer a:hover {
    color: var(--text);
}

/* Blog */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-card h3 {
    margin-bottom: 0.3rem;
}

.blog-card h3 a {
    color: #fff;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--accent-glow);
}

.blog-date {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--accent-glow);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog post */
.blog-post h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.post-content {
    margin-top: 2rem;
    line-height: 1.8;
}

.post-content h3 {
    color: #fff;
    margin: 1.5rem 0 0.75rem;
}

.post-content p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
    color: var(--muted);
    margin: 0 0 1rem 1.5rem;
}

.post-content li {
    margin-bottom: 0.3rem;
}

.post-content code {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    font-size: 0.9em;
}

.post-content pre {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.post-content pre code {
    background: none;
    border: none;
    padding: 0;
}

.post-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--muted);
    font-style: italic;
}

.post-content a {
    color: var(--accent-glow);
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
    .hero h2 { font-size: 1.4rem; }
    body { padding: 1rem; }
    .blog-post h2 { font-size: 1.4rem; }
}
