/* PixVPS — Blog article detail (Firewatch theme, no hero image) */

:root {
    --art-accent: var(--primary);
    --art-accent-dk: var(--primary-dark);
    --art-surface: var(--glass-bg-elevated);
    --art-border: var(--glass-border);
    --art-max-width: 1140px;
}

main {
    display: block;
}

.post-wrap {
    max-width: var(--art-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* Reading progress */
.read-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 1001;
    background: linear-gradient(90deg, var(--primary), var(--text-main));
    width: 0%;
    transition: width 0.1s linear;
}

/* Masthead */
.post-masthead {
    padding: calc(var(--nav-height) + 2.5rem) 0 2.75rem;
    background: linear-gradient(180deg, var(--hero-bg) 0%, var(--bg-color) 100%);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 20;
}

.post-masthead::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-glow);
    pointer-events: none;
}

.post-masthead .post-wrap {
    position: relative;
    z-index: 1;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.post-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.post-breadcrumb a:hover {
    color: var(--text-main);
}

.post-breadcrumb .bc-current {
    color: var(--text-main);
    font-weight: 500;
}

.post-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cat-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(201, 81, 24, 0.2);
    color: var(--text-main);
    border: 1px solid rgba(201, 81, 24, 0.35);
}

.post-date-inline {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

.post-masthead h1 {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--text-main);
    max-width: 48rem;
    margin-bottom: 1rem;
}

.post-lead {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

.post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    color: var(--text-muted);
}

.post-meta-bar .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.post-meta-bar svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.tag-pill {
    display: inline-flex;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 500;
    background: rgba(245, 178, 92, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Body layout */
.post-body-section {
    padding: 3rem 0 4rem;
    background: var(--bg-color);
    position: relative;
    z-index: 20;
}

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1080px) {
    .post-layout {
        grid-template-columns: minmax(0, 1fr) 17.5rem;
        gap: 2.5rem;
    }
}

/* Article typography */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-muted);
    min-width: 0;
    overflow-wrap: break-word;
}

.article-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 2.5rem 0 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0.25px;
}

.article-content h3 {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 1.5rem 0 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content strong {
    color: var(--text-main);
    font-weight: 600;
}

.article-content a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--primary);
}

.article-content code {
    font-family: "SF Mono", "Fira Code", Consolas, monospace;
    font-size: 0.985em;
    background: rgba(245, 178, 92, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.1rem 0.35rem;
    color: var(--text-main);
}

.article-content pre {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    overflow-x: auto;
    margin: 1.25rem 0;
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary);
}

.article-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 1.07rem;
    line-height: 1.65;
}

/* Callouts */
.callout {
    border-left: 3px solid var(--primary);
    background: rgba(201, 81, 24, 0.08);
    padding: 1rem 1.15rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout.tip {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.06);
}

.callout.warning {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.06);
}

.callout-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.callout p {
    margin: 0;
    font-size: 1.025rem;
}

/* Metrics */
.metric-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.metric-card {
    padding: 1.15rem 0.75rem;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.metric-val {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.metric-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Steps */
.step-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.step-item {
    display: flex;
    gap: 0.875rem;
    padding: 1rem 1.1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.step-num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-body {
    flex: 1;
    min-width: 0;
}

.step-body strong {
    display: block;
    font-size: 1.025rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.step-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

/* Tables */
.data-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    font-size: 1rem;
}

.data-table thead tr {
    background: var(--bg-alt);
}

.data-table thead th {
    padding: 0.65rem 1rem;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table tbody td {
    padding: 0.65rem 1rem;
    color: var(--text-muted);
    vertical-align: top;
    line-height: 1.55;
}

/* Sidebar */
.post-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1080px) {
    .post-aside {
        position: sticky;
        top: calc(var(--nav-height) + 1.25rem);
    }
}

.panel-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.1rem;
}

.toc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.toc-link {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.45rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 1.0625rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.4;
    transition: background 0.18s ease, color 0.18s ease;
}

.toc-link:hover {
    background: rgba(245, 178, 92, 0.06);
    color: var(--text-main);
}

.toc-link.active {
    background: rgba(201, 81, 24, 0.12);
    color: var(--text-main);
    font-weight: 600;
}

.toc-num {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.75;
    min-width: 1.25rem;
    flex-shrink: 0;
}

.sidebar-cta {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-alt);
    border: 1px solid rgba(201, 81, 24, 0.25);
}

.sidebar-cta-inner {
    padding: 1.25rem 1.1rem;
}

.sidebar-cta-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.sidebar-cta h3 {
    font-size: 1.075rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.sidebar-cta p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

.sidebar-cta .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-cta .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.0625rem;
    color: var(--text-muted);
}

.feature-check {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(201, 81, 24, 0.25);
    flex-shrink: 0;
    position: relative;
}

.feature-check::after {
    content: '';
    position: absolute;
    left: 0.22rem;
    top: 0.1rem;
    width: 0.2rem;
    height: 0.4rem;
    border: solid var(--text-main);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.875rem;
}

.price-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: 0.5px;
    background: var(--primary);
    color: #fff;
    transition: background 0.2s ease;
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Article end CTA */
.article-cta-section {
    margin-top: 2.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(201, 81, 24, 0.14) 0%, rgba(37, 9, 2, 0.95) 42%, var(--bg-alt) 100%);
    border: 1px solid var(--glass-border-strong);
    box-shadow: var(--glass-shadow), var(--glass-glow);
}

.article-cta-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--text-main) 100%);
    pointer-events: none;
}

.article-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(245, 178, 92, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.article-cta-inner {
    position: relative;
    z-index: 1;
    padding: 2rem 2rem 1.75rem 2.35rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

/* Zone 1: full-width headline */
.article-cta-head {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Zone 2: copy + spec side by side */
.article-cta-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .article-cta-inner {
        padding: 2.25rem 2.25rem 1.85rem 2.6rem;
        gap: 1.25rem;
    }

    .article-cta-main {
        grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 20rem);
        gap: 1.5rem;
        align-items: start;
    }
}

.article-cta-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.article-cta-copy p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
    color: var(--text-muted);
}

/* Zone 3: price + actions bar */
.article-cta-foot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

@media (min-width: 640px) {
    .article-cta-foot {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
    }
}

.article-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: none;
    color: var(--text-main);
    margin-bottom: 0;
    padding: 0.2rem 0.55rem 0.2rem 0.45rem;
    border-radius: var(--radius-pill);
    background: rgba(201, 81, 24, 0.18);
    border: 1px solid rgba(201, 81, 24, 0.35);
    line-height: 1.3;
}

.article-cta-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-main);
    animation: art-pulse-dot 2s ease-in-out infinite;
}

@keyframes art-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.25); }
}

.article-cta-inner h2,
.article-cta-head h2 {
    font-size: clamp(1.45rem, 2.8vw, 1.875rem);
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.35;
    border: none;
    padding: 0;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.35px;
}

.article-cta-head h2 {
    max-width: none;
}

/* eyebrow spacing handled by .article-cta-head gap */

/* legacy selector kept for articles without .article-cta-copy wrapper */
.article-cta-inner > .article-cta-head + .article-cta-main .article-cta-copy p,
.article-cta-inner > div:first-child > p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0;
    color: var(--text-muted);
}

.cta-price-block {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(245, 178, 92, 0.06);
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.cta-price-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.02em;
}

.cta-price-unit {
    font-size: 1.0625rem;
    color: var(--text-muted);
}

.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .cta-btn-group {
        justify-content: flex-end;
    }
}

.article-cta-section .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--bg-color) !important;
    text-decoration: none !important;
    background: linear-gradient(180deg, #fde0a6 0%, var(--text-main) 45%, #d49448 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
    box-shadow: 0 4px 20px rgba(245, 178, 92, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.article-cta-section .btn-cta-primary:hover {
    background: linear-gradient(180deg, #fff 0%, #fde0a6 50%, var(--text-main) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 178, 92, 0.35);
    color: var(--bg-color) !important;
}

.article-cta-section .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: 0.5px;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border-strong);
    color: var(--text-main);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.article-cta-section .btn-cta-secondary:hover {
    border-color: var(--text-muted);
    background: rgba(245, 178, 92, 0.08);
    transform: translateY(-1px);
}

.cta-spec-card {
    width: 100%;
    padding: 1rem 1rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.1);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.1);
    border: 1px solid var(--glass-border-strong);
    box-shadow: var(--glass-highlight);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .cta-spec-card {
        background: var(--glass-bg-elevated);
    }
}

.cta-spec-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--glass-border);
}

.cta-spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 480px) {
    .cta-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1rem;
    }
}

.cta-spec-card .spec-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(245, 178, 92, 0.08);
    font-size: 1.0625rem;
}

@media (min-width: 480px) {
    .cta-spec-grid .spec-row:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 479px) {
    .cta-spec-card .spec-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.cta-spec-card .spec-label {
    color: var(--text-muted);
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
}

.cta-spec-card .spec-val {
    color: var(--text-main);
    font-weight: 600;
    text-align: left;
    line-height: 1.35;
}

.cta-spec-card .spec-val.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 999;
    width: 16rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-alt);
    border: 1px solid rgba(201, 81, 24, 0.3);
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.floating-cta-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 6px;
    background: rgba(245, 178, 92, 0.08);
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cta-close:hover {
    background: rgba(245, 178, 92, 0.15);
}

.floating-cta-inner {
    padding: 1.1rem 1rem;
}

.floating-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: art-pulse-dot 2s ease-in-out infinite;
}

.floating-cta h4 {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
}

.fc-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.65rem;
}

.fc-price-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.fc-price-unit {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.fc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 0.5rem;
    transition: background 0.2s ease;
}

.fc-btn:hover {
    background: var(--primary-dark);
    color: #fff !important;
}

.fc-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
}

.fc-feature-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.15rem 0.35rem;
    border-radius: var(--radius-pill);
    background: rgba(245, 178, 92, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Related articles */
.related-section {
    padding: 3.5rem 0 4.5rem;
    background: var(--hero-bg);
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 20;
}

.section-head {
    max-width: 36rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.65rem;
}

.section-head .eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.section-head h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.25px;
}

.section-head p {
    font-size: 1.025rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clean-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
}

.clean-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow), var(--glass-glow);
}

.related-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.related-card-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-card-body .cat-chip {
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.related-card h3 {
    font-size: 1.075rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0.4rem;
    color: var(--text-main);
    text-transform: none;
    letter-spacing: 0;
}

.related-card h3 a {
    color: inherit;
    text-decoration: none;
}

.related-card h3 a:hover {
    color: var(--primary);
}

.related-card p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

@media (max-width: 767px) {
    .post-masthead {
        padding-top: calc(var(--nav-height) + 1.5rem);
    }

    .post-body-section {
        padding: 2rem 0 3rem;
    }

    .metric-row {
        grid-template-columns: 1fr 1fr;
    }

    .article-cta-inner {
        padding: 1.5rem 1.15rem 1.35rem 1.35rem;
        gap: 1.15rem;
    }

    .article-cta-foot {
        padding-top: 1rem;
    }

    .cta-price-val {
        font-size: 1.65rem;
    }

    .article-cta-section .btn-cta-primary,
    .article-cta-section .btn-cta-secondary {
        flex: 1;
        min-width: calc(50% - 0.375rem);
    }

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

    .cta-spec-card {
        min-width: 0;
    }

    .floating-cta {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pulse-dot,
    .article-cta-eyebrow .dot {
        animation: none;
    }
}
