/* ── Nav ─────────────────────────────────────────────── */
.mkt-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 20, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.mkt-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.mkt-nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mkt-nav-logo i {
    color: var(--accent);
}
.mkt-nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}
.mkt-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none !important;
    transition: color 0.2s;
}
.mkt-nav-link:hover {
    color: var(--text-primary);
    text-decoration: none !important;
}
@media (max-width: 1024px) {
    .mkt-nav-links { display: none; }
}
.mkt-nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* ── Hero ────────────────────────────────────────────── */
.mkt-hero {
    background: var(--bg-primary);
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.mkt-hero-content {
    max-width: 760px;
    margin: 0 auto;
}
.mkt-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}
.mkt-hero h1 span {
    color: var(--accent);
}
.mkt-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.mkt-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.mkt-hero-subnote {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.mkt-hero-login {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.mkt-hero-login a {
    color: var(--accent);
    text-decoration: none;
}
.mkt-hero-login a:hover {
    text-decoration: underline;
}

/* ── Hero split layout ───────────────────────────────── */
.mkt-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.mkt-hero-split .mkt-hero-content {
    text-align: left;
}
.mkt-hero-split .mkt-hero-content p {
    margin-left: 0;
}
.mkt-hero-split .mkt-hero-cta {
    justify-content: flex-start;
}
.mkt-hero-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 0 48px rgba(99, 102, 241, 0.12);
    display: block;
}
@media (max-width: 768px) {
    .mkt-hero-split {
        grid-template-columns: 1fr;
    }
    .mkt-hero-image {
        display: none;
    }
    .mkt-hero-split .mkt-hero-content {
        text-align: center;
    }
    .mkt-hero-split .mkt-hero-content p {
        margin-left: auto;
    }
    .mkt-hero-split .mkt-hero-cta {
        justify-content: center;
    }
}

/* ── Photo strip ─────────────────────────────────────── */
.mkt-photo-strip {
    display: flex;
    height: 260px;
    overflow: hidden;
    gap: 3px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.mkt-photo-strip-slot {
    flex: 1;
    overflow: hidden;
}
.mkt-photo-strip-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82);
    transition: filter 0.3s ease, transform 0.4s ease;
}
.mkt-photo-strip-slot:hover img {
    filter: brightness(1);
    transform: scale(1.04);
}
@media (max-width: 600px) {
    .mkt-photo-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .mkt-photo-strip-slot {
        height: 140px;
    }
}

/* ── Generic section wrapper ─────────────────────────── */
.mkt-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.mkt-section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.mkt-section-sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ── Features grid ───────────────────────────────────── */
.mkt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.mkt-feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    transition: border-color 0.2s;
}
.mkt-feature-card:hover {
    border-color: var(--accent);
}
.mkt-feature-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.125rem;
}
.mkt-feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}
.mkt-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Blog cards (homepage latest posts) ──────────────── */
.mkt-blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 0;
    overflow: hidden;
}
.mkt-blog-card .mkt-blog-card-thumb {
    margin: -1px -1px 1.25rem;
}
.mkt-blog-card .mkt-blog-card-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.mkt-blog-card > *:not(.mkt-blog-card-thumb) {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}
.mkt-blog-card:not(:has(.mkt-blog-card-thumb)) {
    padding-top: 1.75rem;
}
.mkt-blog-card .mkt-blog-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.mkt-blog-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.mkt-blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.mkt-blog-card .mkt-blog-card-more {
    margin-top: auto;
    padding-bottom: 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

/* ── Shared metadata & licences strip (all pages) ────── */
.mkt-meta-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}
.mkt-meta-strip .mkt-features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 720px) {
    .mkt-meta-strip .mkt-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Who it's for (split) ────────────────────────────── */
.mkt-split-bg {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.mkt-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.mkt-split-panel {
    padding: 3rem 2.5rem;
}
.mkt-split-panel:first-child {
    border-right: 1px solid var(--border);
}
.mkt-split-panel i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}
.mkt-split-panel h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.mkt-split-panel p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}
@media (max-width: 680px) {
    .mkt-split {
        grid-template-columns: 1fr;
    }
    .mkt-split-panel:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

/* ── Pricing ─────────────────────────────────────────── */
.mkt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    align-items: start;
}
.mkt-pricing-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}
.mkt-pricing-card--featured {
    border-color: var(--accent);
    background: var(--bg-tertiary);
    position: relative;
}
.mkt-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.85rem;
    border-radius: 99px;
    white-space: nowrap;
}
.mkt-pricing-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.mkt-pricing-storage {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}
.mkt-pricing-price {
    margin-bottom: 1.5rem;
}
.mkt-pricing-price .amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
}
.mkt-pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.mkt-pricing-features {
    list-style: none;
    margin-bottom: 1.75rem;
}
.mkt-pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mkt-pricing-features li i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.mkt-pricing-card .btn {
    width: 100%;
    text-align: center;
}
.mkt-pricing-footnote {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── CTA strip ───────────────────────────────────────── */
.mkt-cta-strip {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 4rem 1.5rem;
}
.mkt-cta-strip h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.mkt-cta-strip .mkt-hero-subnote {
    margin-top: 0.75rem;
}

/* ── Footer ──────────────────────────────────────────── */
.mkt-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 2.5rem 1.5rem;
}
.mkt-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.mkt-footer-logo {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 1rem;
}
.mkt-footer-logo i {
    color: var(--accent);
}
.mkt-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.mkt-footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
}
.mkt-footer-links a:hover {
    color: var(--text-primary);
}
.mkt-footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ── Social proof bar ────────────────────────────────── */
.mkt-proof-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    text-align: center;
}
.mkt-proof-bar p {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Feature section label ───────────────────────────── */
.mkt-section-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}
.mkt-section-label::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    margin: 0.5rem auto 0;
    background: var(--accent);
    opacity: 0.5;
}

/* ── Why FrameCourier (competitive) ──────────────────── */
.mkt-why {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}
.mkt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.mkt-why-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}
.mkt-why-card i {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}
.mkt-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.mkt-why-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.mkt-why-card strong {
    color: var(--text-primary);
}
@media (max-width: 720px) {
    .mkt-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Competitor comparison callout ───────────────────── */
.mkt-compare-callout {
    max-width: 820px;
    margin: 2.5rem auto 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}
.mkt-compare-callout h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.mkt-compare-callout p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.mkt-compare-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.mkt-compare-row-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.mkt-compare-row-item .name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mkt-compare-row-item .price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.mkt-compare-row-item .price.total {
    color: var(--accent);
    font-size: 1.25rem;
}
.mkt-compare-vs {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
}
.mkt-compare-plus {
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 700;
}
.mkt-compare-equals {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
}
.mkt-compare-savings {
    display: inline-block;
    background: var(--success);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 99px;
}

/* ── Add-on storage block ────────────────────────────── */
.mkt-addon-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    text-align: center;
    margin-top: 2rem;
}
.mkt-addon-block h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.mkt-addon-block p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Feature comparison table ────────────────────────── */
.mkt-compare-wrap {
    overflow-x: auto;
    margin-top: 1rem;
}
.mkt-compare {
    width: 100%;
    border-collapse: collapse;
}
.mkt-compare th {
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.mkt-compare th:first-child {
    text-align: left;
    width: 55%;
}
.mkt-compare td {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.mkt-compare td:first-child {
    text-align: left;
    color: var(--text-primary);
}
.mkt-compare tbody tr:hover {
    background: var(--bg-secondary);
}
.mkt-compare .check {
    color: var(--success);
    font-size: 0.95rem;
}
.mkt-compare-group-cell {
    background: var(--bg-tertiary);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Competitor feature grid ─────────────────────────── */
.mkt-compete-wrap {
    overflow-x: auto;
    margin-top: 1rem;
}
.mkt-compete {
    width: 100%;
    border-collapse: collapse;
}
.mkt-compete th {
    padding: 1rem 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.mkt-compete th:first-child {
    text-align: left;
    width: 32%;
}
.mkt-compete td {
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.mkt-compete td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}
.mkt-compete tbody tr:hover {
    background: rgba(255,255,255,0.02);
}
.mkt-compete .no {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.mkt-compete .yes .check {
    color: var(--success);
    font-size: 0.85rem;
}
.mkt-compete th.col-fc,
.mkt-compete td.col-fc {
    background: rgba(99, 102, 241, 0.06);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.mkt-compete th.col-fc {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.mkt-compete td.col-fc .check {
    color: var(--accent);
}
@media (max-width: 640px) {
    .mkt-compete th,
    .mkt-compete td {
        padding: 0.6rem 0.4rem;
        font-size: 0.75rem;
    }
    .mkt-compete th:first-child,
    .mkt-compete td:first-child {
        font-size: 0.75rem;
    }
}

/* ── FAQ ─────────────────────────────────────────────── */
.mkt-faq {
    max-width: 760px;
    margin: 0 auto;
}
.mkt-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}
.mkt-faq-item:last-child {
    border-bottom: none;
}
.mkt-faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.mkt-faq-a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Mobile nav toggle (hamburger) ────────────────────── */
.mkt-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    transition: background 0.2s;
}
.mkt-nav-toggle:hover {
    background: var(--bg-tertiary);
}
.mkt-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.mkt-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mkt-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mkt-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav overlay ───────────────────────────────── */
.mkt-nav-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 101;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.mkt-nav-overlay.open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* ── Mobile nav panel ─────────────────────────────────── */
.mkt-nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: calc(100vh - 64px);
    background: var(--bg-primary);
    border-left: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 102;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mkt-nav-mobile.open {
    transform: translateX(0);
}
.mkt-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mkt-nav-mobile-links .mkt-nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
}
.mkt-nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mkt-nav-mobile-actions .btn {
    text-align: center;
}

@media (max-width: 1024px) {
    .mkt-nav-toggle { display: flex; }
    .mkt-nav-mobile { display: flex; }
}

/* ── Login chooser ───────────────────────────────────── */
.mkt-login-chooser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 680px;
    margin: 3rem auto 0;
}
.mkt-login-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s, background 0.2s;
}
.mkt-login-card:hover {
    border-color: var(--accent);
    background: var(--bg-tertiary);
}
.mkt-login-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: block;
}
.mkt-login-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.mkt-login-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 540px) {
    .mkt-login-chooser { grid-template-columns: 1fr; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
    .mkt-nav-actions .btn-secondary { display: none; }
    .mkt-footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 440px) {
    .mkt-nav-actions { display: none; }
}

/* ── Section "learn more" link ───────────────────────── */
.mkt-section-more {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}
.mkt-section-more:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* ── How it works steps ──────────────────────────────── */
.mkt-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.mkt-step {
    text-align: center;
}
.mkt-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.mkt-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}
.mkt-step-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Blog ────────────────────────────────────────────── */
.blog-back-link {
    margin-bottom: 2rem;
}
.blog-back-link a {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.blog-back-link a:hover {
    text-decoration: underline;
}
.blog-featured-image {
    margin-bottom: 2rem;
}
.blog-featured-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.blog-article-header {
    margin-bottom: 2rem;
}
.blog-article-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.blog-article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}
.blog-article h1 {
    font-size: clamp(1.5rem,4vw,2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.blog-article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}
.blog-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
    color: var(--text-primary);
}
.blog-article p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}
.blog-article ul, .blog-article ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.blog-article li {
    margin-bottom: 0.4rem;
}
.blog-article a {
    color: var(--accent);
    text-decoration: underline;
}
.blog-article a.btn-primary {
    color: #fff;
    text-decoration: none;
}
.blog-article blockquote {
    border-left: 4px solid var(--accent);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--bg-secondary);
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
    font-style: italic;
}
.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin: 1.5rem 0;
}
.blog-article pre {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}
.blog-article code {
    background: var(--bg-secondary);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
}
.blog-article pre code {
    background: none;
    padding: 0;
    border-radius: 0;
}
.blog-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}
.blog-article th, .blog-article td {
    border: 1px solid var(--border);
    padding: 0.6rem 0.75rem;
    text-align: left;
}
.blog-article th {
    background: var(--bg-secondary);
    font-weight: 600;
}

/* ── Blog: Trade Broadsheet (listing) ─────────────────── */
.blog-broadsheet {
    --blog-serif: Georgia, 'Times New Roman', serif;
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

/* Masthead */
.blog-masthead { text-align: center; margin-bottom: 2.5rem; }
.blog-masthead-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 0.6rem;
}
.blog-masthead-title {
    display: inline-block;
    font-family: var(--blog-serif);
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 700; letter-spacing: 0.01em; line-height: 1.05;
    color: var(--text-primary); text-decoration: none;
}
.blog-masthead-rule {
    max-width: 640px; margin: 1rem auto 0.9rem; height: 4px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.blog-masthead-tagline { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* Shared kicker + dateline (reused by article page) */
.blog-kicker {
    font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 700; color: var(--accent); margin-bottom: 0.5rem;
}
.blog-dateline {
    font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--text-muted);
}

/* Lead feature */
.blog-lead { display: flex; gap: 2.5rem; align-items: center; padding-bottom: 2.5rem; }
.blog-lead-body { flex: 1 1 55%; min-width: 0; }
.blog-lead-media { flex: 1 1 45%; display: block; }
.blog-lead-media img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: 10px; border: 1px solid var(--border);
}
.blog-lead-title {
    font-family: var(--blog-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700; line-height: 1.12; margin: 0 0 0.9rem;
}
.blog-lead-title a { color: var(--text-primary); text-decoration: none; }
.blog-lead-title a:hover { color: var(--accent); }
.blog-lead-dek {
    font-size: 1.02rem; line-height: 1.6; color: var(--text-secondary); margin: 0 0 1.1rem;
}

/* Section rule with centered label (reused by article page) */
.blog-section-rule {
    display: flex; align-items: center; gap: 1rem;
    margin: 0 0 2rem; color: var(--text-muted);
}
.blog-section-rule::before, .blog-section-rule::after {
    content: ""; flex: 1; height: 1px; background: var(--border);
}
.blog-section-rule span {
    font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}

/* Brief grid */
.blog-brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-brief { border-top: 2px solid var(--text-primary); padding-top: 1rem; }
.blog-brief-media { display: block; margin-bottom: 0.9rem; }
.blog-brief-media img {
    width: 100%; height: 150px; object-fit: cover;
    border-radius: 8px; border: 1px solid var(--border);
}
.blog-brief-title {
    font-family: var(--blog-serif);
    font-size: 1.2rem; font-weight: 700; line-height: 1.2; margin: 0 0 0.6rem;
}
.blog-brief-title a { color: var(--text-primary); text-decoration: none; }
.blog-brief-title a:hover { color: var(--accent); }
.blog-brief-dek {
    font-size: 0.88rem; line-height: 1.55; color: var(--text-secondary); margin: 0 0 0.8rem;
}

/* Empty state */
.blog-empty { text-align: center; padding: 4rem 0; color: var(--text-muted); }
.blog-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--border); }

/* Pagination */
.blog-pagination {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.blog-pagination a {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--accent); text-decoration: none;
}
.blog-pagination-status {
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}

@media (max-width: 860px) {
    .blog-brief-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-lead { flex-direction: column; align-items: stretch; gap: 1.5rem; }
    .blog-lead-media img { height: 240px; }
}
@media (max-width: 560px) {
    .blog-brief-grid { grid-template-columns: 1fr; }
}

/* ── Blog: Trade Broadsheet (article) ─────────────────── */
.blog-article--feature { --blog-serif: Georgia, 'Times New Roman', serif; }

.blog-article-masthead { text-align: center; margin-bottom: 2.5rem; }
.blog-article-masthead a {
    font-family: var(--blog-serif);
    font-size: 1.25rem; font-weight: 700; letter-spacing: 0.02em;
    color: var(--text-secondary); text-decoration: none;
    border-bottom: 1px solid var(--border); padding-bottom: 0.5rem;
}
.blog-article-masthead a:hover { color: var(--accent); }

.blog-article--feature .blog-kicker { text-align: center; }
.blog-article--feature .blog-article-header h1 {
    font-family: var(--blog-serif);
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 700; letter-spacing: 0; line-height: 1.12; text-align: center;
}
.blog-standfirst {
    font-family: var(--blog-serif);
    font-size: 1.2rem; font-style: italic; line-height: 1.5;
    color: var(--text-secondary); text-align: center;
    max-width: 34em; margin: 1rem auto 0;
}
.blog-article-dateline {
    margin-top: 1.4rem; padding-top: 1.1rem; text-align: center;
    border-top: 1px solid var(--border);
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}

/* Serif body + drop cap */
.blog-article--feature .blog-article-content { font-family: var(--blog-serif); font-size: 1.12rem; line-height: 1.75; }
.blog-article--feature .blog-article-content p { font-family: var(--blog-serif); font-size: 1.12rem; line-height: 1.75; }
.blog-article--feature .blog-article-content h2,
.blog-article--feature .blog-article-content h3 { font-family: var(--blog-serif); }
.blog-article--feature .blog-article-content > p:first-of-type::first-letter {
    float: left; font-size: 3.4em; line-height: 0.82; font-weight: 700;
    padding: 0.05em 0.12em 0 0; color: var(--accent);
}

/* More-from footer */
.blog-article-more { margin-top: 3.5rem; }
.blog-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 640px) { .blog-more-grid { grid-template-columns: 1fr; } }

/* ── Product UI mockups (hand-built, no screenshots) ──── */
.fcm-frame {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 48px rgba(99, 102, 241, 0.12);
}
.fcm-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 0.85rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}
.fcm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3f3f52;
}
.fcm-url {
    margin-left: 0.75rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fcm-url i { font-size: 0.65rem; margin-right: 0.2rem; }
.fcm-frame-body { padding: 0.9rem; }

/* Gallery mockup */
.fcm-gallery-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.fcm-gallery-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.fcm-gallery-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.fcm-gallery-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.fcm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
}
.fcm-btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.fcm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.fcm-tile {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 7px;
    overflow: hidden;
    background: var(--bg-tertiary);
}
.fcm-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcm-star {
    position: absolute;
    top: 5px;
    right: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.fcm-star-on { color: #fbbf24; }
.fcm-wm {
    position: absolute;
    bottom: 5px;
    left: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Video review mockup */
.fcm-review { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.75rem; }
.fcm-player {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}
.fcm-player img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; }
.fcm-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.92);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.fcm-scrub {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
}
.fcm-scrub-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 38%; background: var(--accent); border-radius: 3px; }
.fcm-pin {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fbbf24;
    border: 2px solid var(--bg-primary);
}
.fcm-comments { display: flex; flex-direction: column; gap: 0.5rem; }
.fcm-round {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    padding: 0.2rem 0.55rem;
}
.fcm-comment {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
}
.fcm-comment p { font-size: 0.72rem; color: var(--text-secondary); line-height: 1.45; margin: 0.3rem 0 0; }
.fcm-ts {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg-primary);
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
}
.fcm-comment-done { opacity: 0.75; }
.fcm-resolved {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.4rem;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--success);
}
/* Screenshot block */
.mkt-screenshot {
    margin: 1.75rem auto 0;
    max-width: 960px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    background: var(--bg-primary);
}
.mkt-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}
.mkt-screenshot-link {
    display: block;
    cursor: zoom-in;
}
@media (max-width: 600px) {
    .fcm-review { grid-template-columns: 1fr; }
    .fcm-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Undated competitor-pricing note ─────────────────── */
.mkt-compare-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 1.25rem auto 0;
    max-width: 640px;
}
