/*
Theme Name: AEO God Mode
Theme URI: https://aeogodmode.io
Author: Metronyx AI SEO
Author URI: https://metronyx.co.uk
Description: Custom theme for the AEO God Mode WordPress plugin product site.
Version: 2.0.0
License: GPLv2 or later
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: aeogodmode
*/

/* === RESET & TOKENS === */
:root {
    --bg: #ffffff;
    --bg2: #f5f7fa;
    --bg3: #eef1f7;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --ink: #0f172a;
    --ink2: #1e293b;
    --muted: #64748b;
    --muted2: #94a3b8;
    --blue: #0062ff;
    --blue-light: #eff4ff;
    --blue-mid: #dbeafe;
    --blue-dark: #0047cc;
    --green: #10b981;
    --green-light: #ecfdf5;
    --amber: #f59e0b;
    --red: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

/* Phosphor icon sizes */
.ph {
    font-size: 24px;
    line-height: 1;
}

.ph-sm {
    font-size: 18px;
    line-height: 1;
}

.ph-lg {
    font-size: 28px;
    line-height: 1;
}

/* === NAV === */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 7px;
    transition: all 0.15s;
    display: block;
}

.nav-links>li>a:hover {
    color: var(--ink);
    background: var(--bg2);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    z-index: 200;
}

.has-dropdown:hover .dropdown,
.nav-links>li:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink2);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}

.dropdown li a:hover {
    background: var(--bg2);
    color: var(--blue);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 8px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-ghost {
    color: var(--ink2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border-strong);
    transition: all 0.15s;
}

.nav-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.nav-cta {
    background: var(--blue);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 8px;
    transition: background 0.15s;
}

.nav-cta:hover {
    background: var(--blue-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: 0.3s;
}

/* === HERO === */
.hero {
    padding: 140px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eef4ff 0%, #f8faff 50%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 98, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 98, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 28px;
    animation: up 0.5s ease both;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

/* Legacy hero-eyebrow from plugin page */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 28px;
    animation: up 0.5s ease both;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero h1 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(48px, 6.5vw, 84px);
    font-weight: 900;
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 28px;
    animation: up 0.5s 0.08s ease both;
}

.hero h1 .accent {
    color: var(--blue);
}

.hero h1 .block {
    display: block;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.6;
    animation: up 0.5s 0.14s ease both;
}

.hero-sub strong {
    color: var(--ink2);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: up 0.5s 0.2s ease both;
}

/* Hero social proof */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: up 0.5s 0.26s ease both;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.hero-proof-item strong {
    color: var(--ink2);
    font-weight: 600;
}

.proof-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-strong);
}

/* Legacy hero stats from plugin page */
.hero-stats {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: up 0.5s 0.25s ease both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    font-family: 'Barlow', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--blue);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 4px;
}

.hero-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* === BUTTONS === */
.btn-primary {
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s;
    box-shadow: 0 4px 16px rgba(0, 98, 255, 0.25);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 98, 255, 0.3);
}

.btn-outline {
    color: var(--ink2);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--border-strong);
    background: white;
    transition: all 0.15s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

/* Legacy ghost button from plugin page */
.btn-ghost {
    color: var(--ink2);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--border-strong);
    background: white;
    transition: all 0.15s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.btn-white {
    background: white;
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
    display: inline-block;
}

.btn-white:hover {
    background: var(--bg2);
}

/* === SHARED === */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 100px 0;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 14px;
}

.section-sub {
    color: var(--muted);
    font-size: 17px;
    max-width: 520px;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* === LOGOS / COMPATIBLE === */
.logos-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.logos-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 24px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--muted2);
    letter-spacing: -0.01em;
    transition: color 0.15s;
    cursor: default;
}

.logo-item:hover {
    color: var(--ink);
}

/* Legacy compat strip from plugin page */
.compat-strip {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.compat-label {
    text-align: center;
    font-size: 11px;
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    font-weight: 600;
}

.compat-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.compat-logo {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: -0.01em;
    transition: color 0.15s;
    cursor: default;
}

.compat-logo:hover {
    color: var(--ink);
}

/* === WHAT IS AEO === */
.aeo-section {
    padding: 100px 0;
}

.aeo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.aeo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.aeo-stat {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.aeo-stat-num {
    font-family: 'Barlow', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
}

.aeo-stat-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.aeo-visual {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.aeo-engine-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.aeo-engine-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* === THREE PRODUCTS === */
.products-section {
    padding: 100px 0;
    background: var(--bg2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.product-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.icon-blue {
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    color: var(--blue);
}

.icon-green {
    background: var(--green-light);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green);
}

.icon-amber {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: var(--amber);
}

.product-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === HOMEPAGE FEATURES PREVIEW === */
.hp-features-section {
    padding: 100px 0;
}

.features-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.features-header .section-sub {
    max-width: 400px;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feat-card {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}

.feat-card:hover {
    background: white;
    border-color: var(--blue-mid);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feat-icon {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--blue);
}

.feat-card h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.feat-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.feat-pro {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    padding: 2px 7px;
    border-radius: 99px;
    margin-top: 8px;
}

.features-cta {
    text-align: center;
    margin-top: 40px;
}

/* === PROBLEM STRIP (plugin page) === */
.problem-strip {
    background: var(--ink);
    padding: 22px 0;
}

.problem-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.problem-item strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* === WHAT IT IS (plugin page) === */
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.what-card {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 14px;
}

.what-card:last-child {
    margin-bottom: 0;
}

.what-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 14px;
}

.what-card.blue-card {
    background: var(--blue-light);
    border-color: var(--blue-mid);
}

.what-card.blue-card .what-card-label {
    color: var(--blue);
}

.what-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.what-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.chk {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

.xmk {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

/* === FEATURES GRID (plugin page) === */
.features-section {
    background: var(--bg2);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.feature-card.featured {
    border-color: var(--blue-mid);
    box-shadow: var(--shadow-sm);
}

.feature-card.pro-card {
    border-color: var(--blue-mid);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.pro-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    padding: 2px 8px;
    border-radius: 99px;
    margin-top: 10px;
}

/* === CITATION SECTION === */
.citation-section {
    padding: 100px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.citation-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 98, 255, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.citation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.citation-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

/* Legacy */
.citation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.citation-section .section-title {
    color: white;
}

.citation-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.citation-mock {
    background: #141c2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.mock-titlebar {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-titlebar-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 8px;
}

.mock-body {
    padding: 24px;
}

.mock-section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 14px;
    font-weight: 700;
}

/* Legacy mock-header */
.mock-header {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
}

.mock-header span:last-child {
    color: var(--green);
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.mock-row:last-child {
    border-bottom: none;
}

.mock-engine {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
}

.edot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.edot-g {
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
}

.edot-b {
    background: #60a5fa;
    box-shadow: 0 0 6px #60a5fa;
}

/* Legacy dots */
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
}

.dot-b {
    background: #60a5fa;
    box-shadow: 0 0 6px #60a5fa;
}

.mock-count {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    color: white;
    font-size: 14px;
}

.mock-trend {
    font-size: 11px;
    color: var(--green);
}

.mock-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 16px 0;
}

.mock-referral {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-referral-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-weight: 700;
}

.mock-referral-nums {
    display: flex;
    gap: 20px;
}

.mock-num {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.mock-source {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

/* === FREE TOOLS === */
.tools-section {
    padding: 100px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.tool-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.tool-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.tool-text h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 6px;
}

.tool-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.tool-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

/* === BLOG TEASER === */
.blog-section {
    padding: 100px 0;
    background: var(--bg2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.blog-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.thumb-blue {
    background: linear-gradient(135deg, #eff4ff, #dbeafe);
}

.thumb-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.thumb-amber {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.blog-body {
    padding: 20px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 8px;
    display: block;
}

.blog-card h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* === VS TABLE (plugin page) === */
.vs-section {
    padding: 100px 0;
    background: var(--bg2);
}

.vs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 48px;
    font-size: 14px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}

.vs-table th {
    padding: 16px 24px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: var(--bg3);
    border-bottom: 1.5px solid var(--border);
    letter-spacing: -0.01em;
}

.vs-table th:first-child {
    text-align: left;
}

.vs-table th.hl {
    background: var(--blue-light);
    color: var(--blue);
}

.vs-table td {
    padding: 13px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    background: white;
}

.vs-table tr:last-child td {
    border-bottom: none;
}

.vs-table td:first-child {
    text-align: left;
    color: var(--ink2);
    font-weight: 500;
}

.vs-table td.hl {
    background: var(--blue-light);
}

.vc {
    color: var(--green);
    font-weight: 700;
}

.vx {
    color: var(--red);
    font-weight: 700;
}

.vp {
    font-size: 12px;
    color: #f59e0b;
    font-weight: 600;
}

/* === PRICING === */
.pricing-section {
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.pricing-header .section-sub {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.pricing-card.popular {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-light), var(--shadow);
    transform: translateY(-6px);
}

.pricing-card.popular:hover {
    transform: translateY(-9px);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 6px;
}

.pricing-name {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--ink);
}

.pricing-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 4px;
}

.price-cur {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.price-amt {
    font-family: 'Barlow', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--ink);
}

.price-per {
    font-size: 14px;
    color: var(--muted);
}

.price-note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
}

.price-note .save {
    color: var(--green);
    font-weight: 700;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s;
    margin-bottom: 24px;
    border: 1.5px solid var(--border-strong);
    color: var(--ink2);
    background: white;
}

.pricing-cta:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.pricing-card.popular .pricing-cta {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(0, 98, 255, 0.3);
}

.pricing-card.popular .pricing-cta:hover {
    background: var(--blue-dark);
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.pricing-features li .chk {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

.pricing-features li.pro-item {
    color: var(--ink2);
    font-weight: 500;
}

.pricing-features li.pro-item .chk {
    color: var(--blue);
}

/* === COMPARE TABLE === */
.compare-section {
    padding: 100px 0;
    background: var(--bg2);
}

.compare-header {
    text-align: center;
    margin-bottom: 56px;
}

.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    background: white;
    min-width: 700px;
}

.compare-table thead th {
    padding: 18px 24px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    background: var(--bg3);
    border-bottom: 2px solid var(--border);
    color: var(--ink);
    letter-spacing: -0.01em;
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table thead th.compare-hl {
    background: var(--blue-light);
    color: var(--blue);
}

.compare-feature-col {
    width: 38%;
}

.compare-table td {
    padding: 12px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.compare-table td:first-child {
    text-align: left;
    color: var(--ink2);
    font-weight: 500;
}

.compare-table td.compare-hl {
    background: rgba(0, 98, 255, 0.025);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-group td {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    background: var(--bg2);
    padding: 14px 24px 10px;
    border-bottom: 1.5px solid var(--border);
}

.val-note {
    display: block;
    font-size: 11px;
    color: var(--muted2);
    font-weight: 400;
    margin-top: 2px;
}

.compare-table tfoot td {
    padding: 24px;
    background: var(--bg3);
    border-top: 2px solid var(--border);
    border-bottom: none;
}

.compare-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}

.compare-cta-free {
    color: var(--ink2);
    border: 1.5px solid var(--border-strong);
    background: white;
}

.compare-cta-free:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.compare-cta-pro {
    color: white;
    background: var(--blue);
    border: 1.5px solid var(--blue);
    box-shadow: 0 4px 14px rgba(0, 98, 255, 0.3);
}

.compare-cta-pro:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.compare-cta-agency {
    color: var(--ink2);
    border: 1.5px solid var(--border-strong);
    background: white;
}

.compare-cta-agency:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

/* === FAQ === */
.faq-section {
    padding: 100px 0;
    background: var(--bg2);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 48px;
}

.faq-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    transition: all 0.15s;
}

.faq-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
}

.faq-q {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.faq-a {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* === METRONYX STRIP === */
.agency-strip {
    padding: 64px 0;
    background: var(--ink);
}

.agency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.agency-text h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.agency-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    max-width: 480px;
}

/* === CTA === */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #eef4ff 100%);
    border-top: 1px solid var(--border);
}

.cta-section h2 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.05;
    color: var(--ink);
}

.cta-section p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 36px;
}

.final-cta {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #eef4ff 100%);
    border-top: 1px solid var(--border);
}

.final-cta h2 {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 16px;
}

.final-cta h2 .accent {
    color: var(--blue);
}

.final-cta p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 40px;
}

/* === FOOTER v2 === */
.site-footer-v2 {
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col h4 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col ul a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted2);
}

.footer-bottom a {
    color: var(--muted2);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--ink);
}

/* Legacy footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 36px 0;
    background: white;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer,
.site-footer a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--ink);
}

.footer-links {
    display: flex;
    gap: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .site-nav {
        padding: 0 20px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .what-grid,
    .aeo-grid,
    .features-grid,
    .hp-features-grid,
    .pricing-grid,
    .faq-grid,
    .citation-inner,
    .products-grid,
    .blog-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .vs-table {
        font-size: 12px;
    }

    .vs-table th,
    .vs-table td {
        padding: 10px 12px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .compare-table {
        font-size: 12px;
    }

    .compare-table td,
    .compare-table thead th {
        padding: 10px 14px;
    }

    .compare-feature-col {
        width: auto;
        min-width: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agency-inner {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════
   DASHBOARD SHOWCASE — Floating Cards
   ═══════════════════════════════════════════════ */

.dashboard-showcase {
    background: #0c0e14;
    padding: 80px 0;
    overflow: hidden;
}

.showcase-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 440px;
}

/* Central Browser Mockup */
.showcase-center {
    background: rgba(20, 23, 32, 0.95);
    border: 1px solid rgba(38, 45, 64, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(51, 141, 255, 0.06);
    position: relative;
    z-index: 1;
}

.showcase-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(12, 14, 20, 0.8);
    border-bottom: 1px solid rgba(38, 45, 64, 0.6);
}

.showcase-browser-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.browser-title {
    margin-left: 12px;
    font-size: 11px;
    color: rgba(232, 236, 244, 0.5);
    font-family: 'Inter', system-ui, sans-serif;
}

.showcase-dash-body {
    padding: 24px;
}

.dash-header {
    margin-bottom: 20px;
}

.dash-page-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #e8ecf4;
    font-family: 'Inter', system-ui, sans-serif;
}

.dash-subtitle {
    font-size: 12px;
    color: rgba(232, 236, 244, 0.45);
    margin-top: 2px;
    display: block;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.dash-stat-card {
    background: rgba(26, 30, 46, 0.7);
    border: 1px solid rgba(38, 45, 64, 0.6);
    border-radius: 14px;
    padding: 14px;
    backdrop-filter: blur(12px);
}

.dash-stat-label {
    display: block;
    font-size: 10px;
    color: rgba(232, 236, 244, 0.4);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.dash-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: #e8ecf4;
    font-family: 'Inter', sans-serif;
}

.dash-stat-dim {
    font-size: 11px;
    color: rgba(232, 236, 244, 0.3);
    font-weight: 400;
}

.dash-bar {
    height: 5px;
    background: rgba(42, 45, 58, 0.8);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.dash-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.dash-bar-fill.green {
    background: #10b981;
}

.dash-bar-fill.amber {
    background: #f59e0b;
}

.dash-modules-row {
    display: flex;
    gap: 10px;
}

.dash-module {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(26, 30, 46, 0.6);
    border: 1px solid rgba(38, 45, 64, 0.5);
    border-radius: 12px;
    font-size: 11px;
    color: #e8ecf4;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.dash-module i {
    color: #338dff;
    font-size: 14px;
}

.dash-badge-on {
    margin-left: auto;
    font-size: 9px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Floating Cards */
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translateY(0) rotate(1.5deg);
    }

    50% {
        transform: translateY(-16px) rotate(1.5deg);
    }
}

.float-card {
    position: absolute;
    background: rgba(20, 23, 32, 0.92);
    border: 1px solid rgba(38, 45, 64, 0.7);
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 2;
    font-family: 'Inter', system-ui, sans-serif;
    min-width: 200px;
}

/* Health Score (top left) */
.float-health {
    top: -20px;
    left: -100px;
    animation: float1 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: absolute;
}

.float-health svg {
    display: block;
}

.health-ring {
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.35));
    transition: stroke-dashoffset 2s ease-out;
}

.health-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.health-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #e8ecf4;
}

.health-label {
    display: block;
    font-size: 7px;
    color: rgba(232, 236, 244, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Citation Found (top right) */
.float-citation {
    top: -30px;
    right: -80px;
    animation: float2 4.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Crawler Visit (bottom left) */
.float-crawler {
    bottom: 20px;
    left: -120px;
    animation: float3 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Citability Score (bottom right) */
.float-citability {
    bottom: -10px;
    right: -100px;
    animation: float4 4.8s ease-in-out infinite;
    animation-delay: 2.2s;
}

/* Card inner elements */
.fc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fc-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fc-icon-wrap.green {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.fc-icon-wrap.blue {
    background: rgba(51, 141, 255, 0.12);
    color: #338dff;
}

.fc-icon-wrap.purple {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.fc-title {
    font-size: 13px;
    font-weight: 600;
    color: #e8ecf4;
}

.fc-sub {
    font-size: 10px;
    color: rgba(232, 236, 244, 0.4);
}

.fc-body {
    margin-bottom: 8px;
}

.fc-query {
    font-size: 11px;
    color: rgba(232, 236, 244, 0.7);
    font-style: italic;
    margin-bottom: 4px;
}

.fc-url {
    font-size: 10px;
    color: #338dff;
}

.fc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

.fc-label {
    font-size: 10px;
    color: rgba(232, 236, 244, 0.4);
}

.fc-val {
    font-size: 11px;
    color: #e8ecf4;
    font-family: 'JetBrains Mono', monospace;
}

.fc-status-ok {
    color: #10b981;
}

.fc-time {
    font-size: 9px;
    color: rgba(232, 236, 244, 0.3);
}

.fc-score-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.fc-score-big {
    font-size: 28px;
    font-weight: 800;
    color: #e8ecf4;
}

.fc-grade {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
    .float-health {
        left: -40px;
    }

    .float-citation {
        right: -30px;
    }

    .float-crawler {
        left: -50px;
    }

    .float-citability {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .dashboard-showcase {
        padding: 50px 0 40px;
    }

    .showcase-wrapper {
        min-height: auto;
    }

    .float-card {
        display: none;
    }

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

    .dash-modules-row {
        flex-wrap: wrap;
    }

    .dash-module {
        flex: 1 1 calc(50% - 5px);
    }
}

/* ═══════════════════════════════════════════════
   BLOG — SINGLE POST
   ═══════════════════════════════════════════════ */

/* Hero */
.blog-hero {
    position: relative;
    padding: 120px 0 56px;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero-bg svg {
    width: 100%;
    height: 100%;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted2);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.bc-sep {
    font-size: 10px;
    color: var(--muted2);
    display: flex;
    align-items: center;
}

.bc-current {
    color: var(--muted2);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-cat-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.blog-title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 740px;
}

/* Author + meta row */
.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.blog-author-chip {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-chip img.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.blog-author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}

.blog-author-name:hover {
    color: var(--blue);
}

.blog-meta-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 1px;
}

/* Social share */
.blog-share {
    display: flex;
    gap: 6px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 16px;
    transition: all 0.15s;
    text-decoration: none;
}

.share-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

/* Two-column layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    padding-top: 56px;
    padding-bottom: 100px;
    align-items: start;
}

/* Post body */
.post-body {
    min-width: 0;
}

.post-body h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    margin: 56px 0 18px;
    line-height: 1.15;
    scroll-margin-top: 88px;
    padding: 10px 0 14px 18px;
    border-left: 4px solid var(--blue);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.post-body h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 36px 0 12px;
    line-height: 1.2;
}

.post-body h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 10px;
}

.post-body p {
    margin-bottom: 20px;
    color: var(--ink2);
    line-height: 1.75;
    font-size: 16px;
}

.post-body ul,
.post-body ol {
    margin: 0 0 24px 24px;
    color: var(--ink2);
    line-height: 1.75;
}

.post-body li {
    margin-bottom: 6px;
}

.post-body a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-body a:hover {
    color: var(--blue-dark);
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.post-body blockquote {
    border-left: 4px solid var(--blue);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--blue-light);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink2);
}

.post-body code {
    font-size: 13px;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2px 6px;
    border-radius: 5px;
    font-family: 'SF Mono', Consolas, monospace;
}

.post-body pre {
    background: var(--ink);
    color: #e2e8f0;
    padding: 24px;
    border-radius: 14px;
    overflow-x: auto;
    margin: 24px 0;
    font-size: 13px;
    line-height: 1.6;
}

.post-body pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

.post-body hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* Sticky sidebar */
.blog-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TOC card */
.toc-card {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.toc-label {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 12px;
}

.toc-list {
    list-style: none;
    counter-reset: toc;
    padding: 0;
    margin: 0;
}

.toc-list li {
    counter-increment: toc;
}

.toc-list li a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    margin-left: -1px;
    transition: all 0.15s;
    line-height: 1.35;
}

.toc-list li a::before {
    content: counter(toc) ".";
    font-weight: 600;
    color: var(--muted2);
    min-width: 18px;
    flex-shrink: 0;
}

.toc-list li a:hover {
    color: var(--ink);
}

.toc-list li a.active {
    color: var(--blue);
    border-left-color: var(--blue);
    background: var(--blue-light);
    border-radius: 0 6px 6px 0;
    font-weight: 500;
}

/* Sidebar CTA */
.sidebar-cta-card {
    background: var(--ink);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    color: white;
}

.sidebar-cta-icon {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 10px;
}

.sidebar-cta-card strong {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    margin-bottom: 6px;
}

.sidebar-cta-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

.sidebar-cta-btn {
    width: 100%;
    text-align: center;
    display: block;
    padding: 11px 20px;
    font-size: 14px;
}

.sidebar-cta-link {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.sidebar-cta-link:hover {
    color: white;
}

/* ═══════════════════════════════════════════════
   SHORTCODE COMPONENTS
   ═══════════════════════════════════════════════ */

/* TL;DR */
.sc-tldr {
    background: var(--blue-light);
    border: 1.5px solid var(--blue-mid);
    border-radius: 14px;
    padding: 24px;
    margin: 0 0 32px;
}

.sc-tldr-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 10px;
}

.sc-tldr-label i {
    font-size: 18px;
}

.sc-tldr-body {
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.7;
}

.sc-tldr-body p:last-child {
    margin-bottom: 0;
}

.sc-tldr-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-tldr-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 8px;
}

.sc-tldr-list li:last-child {
    margin-bottom: 0;
}

.sc-tldr-arrow {
    color: var(--blue);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Force button text visible everywhere (override .post-body a styles) */
.post-body .btn-primary,
.post-body a.btn-primary,
.post-body .sc-cta-btn,
a.btn-primary,
a.sc-cta-btn,
.sidebar-cta-btn {
    color: #fff !important;
    text-decoration: none !important;
}

/* Pros */
.sc-pros {
    background: #ecfdf5;
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    padding: 24px;
    margin: 24px 0;
}

.sc-pros-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 12px;
}

.sc-pros-label i {
    font-size: 18px;
}

.sc-pros ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-pros li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 8px;
}

.sc-check {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Cons */
.sc-cons {
    background: #fef2f2;
    border: 1.5px solid rgba(239, 68, 68, 0.15);
    border-radius: 14px;
    padding: 24px;
    margin: 24px 0;
}

.sc-cons-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 12px;
}

.sc-cons-label i {
    font-size: 18px;
}

.sc-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-cons li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 8px;
}

.sc-xmark {
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pro Tip */
.sc-protip {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-radius: 14px;
    padding: 24px;
    margin: 24px 0;
}

.sc-protip-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber);
    margin-bottom: 10px;
}

.sc-protip-label i {
    font-size: 18px;
}

.sc-protip-body {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
}

.sc-protip-body p:last-child {
    margin-bottom: 0;
}

/* In-content CTA */
.sc-cta-inline {
    margin: 36px 0;
}

.sc-cta-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
}

.sc-cta-icon {
    font-size: 28px;
    color: var(--blue);
    flex-shrink: 0;
}

.sc-cta-text strong {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 2px;
}

.sc-cta-text span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.sc-cta-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 13px;
}

/* FAQ Accordion */
.sc-faq-accordion {
    margin: 32px 0;
}

.sc-faq-item {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.15s;
}

.sc-faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.sc-faq-item.open .sc-faq-a {
    max-height: 600px;
    padding: 0 20px 20px;
    opacity: 1;
}

.sc-faq-item.open .sc-faq-arrow {
    transform: rotate(180deg);
}

.sc-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.sc-faq-q:hover {
    color: var(--blue);
}

.sc-faq-arrow {
    font-size: 16px;
    color: var(--muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.sc-faq-a {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.sc-faq-a p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   BLOG TABLES
   ═══════════════════════════════════════════════ */

.blog-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.blog-table-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

.post-body .blog-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
    border: none;
}

.post-body .blog-table-wrap th {
    padding: 14px 20px;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    background: var(--bg3);
    border-bottom: 1.5px solid var(--border);
    color: var(--ink);
}

.post-body .blog-table-wrap td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--ink2);
}

.post-body .blog-table-wrap tr:last-child td {
    border-bottom: none;
}

.post-body .blog-table-wrap tr:nth-child(even) td {
    background: var(--bg2);
}

/* ═══════════════════════════════════════════════
   AUTHOR BOX
   ═══════════════════════════════════════════════ */

.author-box-section {
    padding: 0 0 100px;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.author-box-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.author-box-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted2);
    margin-bottom: 4px;
}

.author-box-name {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.author-box-name:hover {
    color: var(--blue);
}

.author-box-bio {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-box-posts {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.author-box-posts:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   BLOG — ARCHIVE
   ═══════════════════════════════════════════════ */

.archive-hero {
    padding: 120px 0 48px;
    background: linear-gradient(180deg, #eef4ff 0%, #f8faff 50%, #ffffff 100%);
    text-align: center;
}

.archive-hero .section-sub {
    margin: 0 auto 36px;
}

/* Search */
.archive-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.archive-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--muted2);
}

.archive-search-input {
    width: 100%;
    padding: 14px 20px 14px 46px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--ink);
    outline: none;
    transition: border-color 0.15s;
    box-shadow: var(--shadow-sm);
}

.archive-search-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-light);
}

/* Layout */
.archive-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 100px;
    align-items: start;
}

/* Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.archive-main {
    min-width: 0;
}

/* Card */
.archive-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.archive-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.svg-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-card-body {
    padding: 18px;
}

.archive-card-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 8px;
}

.archive-card-title {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
}

.archive-card-excerpt {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.archive-card-meta {
    font-size: 11px;
    color: var(--muted2);
}

/* Pagination */
.archive-pagination {
    margin-top: 48px;
    text-align: center;
}

.archive-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.15s;
    background: white;
}

.archive-pagination .page-numbers:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.archive-pagination .page-numbers.current {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.archive-pagination .prev,
.archive-pagination .next {
    font-weight: 600;
}

/* Empty state */
.archive-empty {
    text-align: center;
    padding: 80px 20px;
}

.archive-empty h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    margin: 16px 0 8px;
    color: var(--ink);
}

.archive-empty p {
    color: var(--muted);
}

/* Category sidebar */
.archive-sidebar {
    position: relative;
}

.cat-list-card {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}

.cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.15s;
}

.cat-list li a:hover {
    background: white;
    color: var(--ink);
}

.cat-list li.current a {
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600;
}

.cat-count {
    font-size: 12px;
    background: var(--bg3);
    border-radius: 99px;
    padding: 1px 8px;
    color: var(--muted2);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   BLOG RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 960px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        display: none;
    }

    .archive-layout {
        grid-template-columns: 1fr;
    }

    .archive-sidebar {
        display: none;
    }

    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-hero {
        padding: 100px 0 40px;
    }

    .blog-title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .sc-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .sc-cta-btn {
        width: 100%;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .blog-share {
        flex-wrap: wrap;
    }
}