/* ============================================
   OFFGRID AI INTEL - Global Stylesheet
   intel.offgridaitoolkit.com
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1A1611;
    color: #E8DDD0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
    --bg-primary: #1A1611;
    --bg-secondary: #231D16;
    --bg-card: #2C2018;
    --bg-card-hover: #362A1F;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8941F;
    --text-primary: #E8DDD0;
    --text-secondary: #B8A088;
    --text-muted: #8A7A6A;
    --accent-green: #4CAF50;
    --border-subtle: rgba(255, 140, 66, 0.12);
    --border-card: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.15);
}

/* --- Top Bar --- */
.top-bar {
    background: rgba(26, 22, 17, 0.95);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}
.top-bar-left i { color: var(--gold); font-size: 12px; }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-bar-right a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s;
}
.top-bar-right a:hover { color: var(--gold); }

/* --- Header --- */
.main-header {
    background: rgba(26, 22, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.header-logo-text span { color: var(--gold); }
.header-logo-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-glow);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.compass-logo {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    max-width: 36px;
    max-height: 36px;
    flex-shrink: 0;
    overflow: hidden;
    display: inline-block;
    animation: compass-spin 20s linear infinite;
}
@keyframes compass-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.compass-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* --- Navigation --- */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav > a, .nav-dropdown > .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    transition: color 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.header-nav > a:hover, .nav-dropdown > .nav-link:hover { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown > .nav-link i { font-size: 10px; opacity: 0.5; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 8px;
    margin-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
    background: var(--gold-glow);
    color: var(--gold);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 2000;
    padding: 80px 40px 40px;
    overflow-y: auto;
}
.mobile-nav.active { display: block; }
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
}
.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-sub { padding-left: 20px; font-size: 15px; }
.mobile-nav .btn-gold {
    display: inline-flex;
    margin-top: 24px;
}

/* --- Sections --- */
.intel-section {
    padding: 48px 40px;
    max-width: 100%;
}
.intel-section .inner {
    max-width: 1280px;
    margin: 0 auto;
}
.intel-section-alt { background: var(--bg-secondary); }

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* --- Cards --- */
.intel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}
.intel-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

/* --- Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

/* Header CTA button - gold border outline style */
.header-nav a.btn-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.header-nav a.btn-gold:hover {
    background: var(--gold);
    color: #1A1611;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid rgba(184, 160, 136, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 10px; }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,22,17,0.95) 0%, rgba(26,22,17,0.82) 40%, rgba(26,22,17,0.35) 70%, rgba(26,22,17,0.15) 100%);
}
.hero .inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 80px 60px;
}
.hero-content { max-width: 650px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glow);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}
.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* --- Resource Grid --- */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.resource-card { padding: 36px; }
.resource-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.resource-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.resource-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* --- Try It Grid --- */
.try-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.try-card {
    text-align: center;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
}
.try-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.try-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
}
.try-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.try-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card { padding: 0; overflow: hidden; }
.blog-card-image {
    height: 180px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    border-bottom: 1px solid var(--border-card);
}
.blog-card-body { padding: 24px; }
.blog-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.blog-tag-privacy { background: rgba(76, 175, 80, 0.15); color: #4CAF50; }
.blog-tag-value { background: rgba(212, 175, 55, 0.15); color: var(--gold); }
.blog-tag-offgrid { background: rgba(100, 149, 237, 0.15); color: #6495ED; }
.blog-tag-testing { background: rgba(255, 152, 0, 0.15); color: #FF9800; }
.blog-tag-guide { background: rgba(156, 39, 176, 0.15); color: #CE93D8; }
.blog-card h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.blog-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}
.blog-meta i { margin-right: 4px; }

/* --- Privacy Banner --- */
.privacy-banner {
    padding: 32px 40px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, rgba(212,175,55,0.03), rgba(26,22,17,1));
}
.privacy-banner .inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.privacy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}
.privacy-item i { color: var(--gold); font-size: 16px; }

/* --- Final CTA --- */
.final-cta {
    text-align: center;
    position: relative;
}
.final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}
.final-cta h2 em { font-style: italic; color: var(--gold); }
.final-cta p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    flex-wrap: wrap;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    position: relative;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.trust-badge i { color: var(--accent-green); }

/* --- Footer --- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 64px 40px 0;
}
.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 16px 0;
}
.footer-brand-checks {
    list-style: none;
    margin-bottom: 20px;
}
.footer-brand-checks li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-brand-checks i { color: var(--accent-green); font-size: 12px; }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { padding: 5px 0; }
.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* --- Content Page Styles --- */
.page-hero {
    text-align: center;
    padding: 48px 20px;
    background: linear-gradient(135deg, rgba(30, 20, 10, 0.95), rgba(45, 30, 15, 0.95));
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(184, 134, 11, 0.2);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b8860b, #daa520, #cd853f, #d2691e);
    background-size: 300% 100%;
    animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.page-hero .compass-logo {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    max-width: 96px;
    max-height: 96px;
    margin: 0 auto 16px;
}
.page-hero h1 {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.page-hero .version {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}
.page-hero p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    position: relative;
    z-index: 1;
}

.content-section {
    background: linear-gradient(135deg, rgba(30, 20, 10, 0.9), rgba(45, 30, 15, 0.9));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.content-section h2 {
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold);
}
.content-section h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-primary);
}
.content-section h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--gold);
}
.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}
.content-section ul, .content-section ol {
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 16px;
}
.content-section li {
    padding: 6px 0;
    line-height: 1.7;
}
.content-section li strong { color: var(--text-primary); }
.content-section code {
    background: rgba(184, 134, 11, 0.15);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid rgba(184, 134, 11, 0.15);
}
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 10px;
    overflow: hidden;
}
.content-section th {
    background: rgba(184, 134, 11, 0.2);
    color: var(--gold);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}
.content-section td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    color: var(--text-secondary);
    font-size: 13px;
}
.content-section tr:hover td {
    background: rgba(184, 134, 11, 0.05);
}
.content-section img {
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

/* Table of Contents */
.toc {
    background: linear-gradient(135deg, rgba(30, 20, 10, 0.9), rgba(45, 30, 15, 0.9));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}
.toc h2 {
    font-size: 1.5em;
    color: var(--gold);
    margin-bottom: 20px;
}
.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.toc-grid a {
    display: block;
    padding: 12px 16px;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s;
}
.toc-grid a:hover {
    background: rgba(184, 134, 11, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* Feature list grid */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 12px 16px;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(184, 134, 11, 0.15);
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* Blog Post Styles */
.blog-post-header {
    text-align: center;
    padding: 60px 20px 40px;
}
.blog-post-header .blog-tag { margin-bottom: 16px; }
.blog-post-header h1 {
    font-size: 2.5em;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.blog-post-header .blog-meta {
    justify-content: center;
    margin-bottom: 32px;
}
.blog-post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px 60px;
}
.blog-post-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 24px;
}
.blog-post-content h2 {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--text-primary);
    margin: 48px 0 16px;
}
.blog-post-content h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--gold);
    margin: 32px 0 12px;
}
.blog-post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--gold-glow);
    border-radius: 0 12px 12px 0;
    color: var(--text-secondary);
    font-style: italic;
}
.blog-post-content ul, .blog-post-content ol {
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 24px;
}
.blog-post-content li { padding: 4px 0; line-height: 1.8; }

/* Blog Index */
.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.blog-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.blog-filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-card);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}
.blog-filter-btn:hover, .blog-filter-btn.active {
    background: var(--gold-glow);
    border-color: var(--gold);
    color: var(--gold);
}

/* --- Copy to Clipboard Toast --- */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #1A1611;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}
.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Prompt Hover Effects --- */
.copyable-prompt {
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.copyable-prompt:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}
.copyable-prompt::after {
    content: 'Click to copy';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.25s;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    letter-spacing: 0.5px;
}
.copyable-prompt:hover::after {
    opacity: 0.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .resource-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid, .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { padding: 8px 20px; }
    .top-bar-left span { display: none; }
    .main-header { padding: 0 20px; }
    .header-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .intel-section { padding: 36px 16px; }
    .hero h1 { font-size: 36px; }
    .hero .inner { padding: 60px 20px 60px 20px; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 22px; }
    .section-title { font-size: 28px; }
    .resource-grid { grid-template-columns: 1fr; }
    .try-grid { grid-template-columns: 1fr; }
    .blog-grid, .blog-index-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .privacy-banner .inner { gap: 24px; }
    .final-cta h2 { font-size: 32px; }
    .trust-badges { gap: 16px; }
    .page-hero h1 { font-size: 1.8em; }
    .page-hero .compass-logo { width: 70px; height: 70px; min-width: 70px; min-height: 70px; max-width: 70px; max-height: 70px; }
    .content-section { padding: 20px; }
    .copyable-prompt::after { display: none; }
    .toc-grid { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
    .blog-post-header h1 { font-size: 1.8em; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
}
