* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "DM Sans", sans-serif;
    color: #1E1E1E;
}

body {
    background-color: #FAFAFA;
}

button {
    transition: all ease 350ms;
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
    outline: none;
    font-weight: 400;
}

.highlight {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
}

a {
    font-family: "Roboto Mono", monospace;
}

section {
    padding-inline: 40px;
}

.container {
    margin: 0 auto;
    max-width: 1320px;
}

.caption {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
    color: rgba(30, 30, 30, .4);
    font-family: "Roboto Mono", monospace;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20px;
    z-index: 999999;
    transform: translateY(-100%);
    opacity: 0;
    animation: slideDown 1s ease forwards;
}

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

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #1E1E1E;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar .logo { cursor: pointer; }

.navbar .links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar .links a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    color: #1E1E1E;
    transition: all ease 250ms;
}

.navbar .links a:hover { opacity: 66%; }

.navbar .links a.active {
    border-bottom: 1px solid #1E1E1E;
    padding-bottom: 2px;
}

.navbar .links button {
    border-radius: 40px;
    background-color: #1E1E1E;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 20px;
    border: none;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .links button::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0%;
    background: #FFD600;
    z-index: -1;
    transition: height 0.3s ease;
}

.navbar .links button:hover::before { height: 100%; }
.navbar .links button:hover { color: #000; }
.navbar .links button:hover img { filter: invert(100); }

/* Mobile menu */
.mobile-menu {
    display: none;
}

.menu {
    display: flex;
    position: fixed;
    z-index: 999;
    top: 0; left: 0; bottom: 0; right: 0;
    background-color: #fff;
    padding: 150px 20px 0;
    flex-direction: column;
    gap: 20px;
    transition: all ease 500ms;
    transform: translateX(100%);
}

.menu a {
    font-size: 20px;
    line-height: 26px;
    transition: all ease 300ms;
    text-decoration: none;
}

.menu .menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(30, 30, 30, .1);
}

.menu button {
    background-color: #1E1E1E;
    color: #fff;
    border: none;
    padding: 16px 26px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

/* ── HERO ── */
.blog-hero {
    background: url(assets/bg/hero_bg_too.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 80px;
    border-bottom: 1px dashed rgba(30, 30, 30, 0.2);
}

.blog-hero .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.blog-hero .left {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.3s;
}

.blog-hero h1 {
    font-size: 95px;
    line-height: 105px;
    font-weight: 500;
    max-width: 700px;
}

.blog-hero .right {
    flex-shrink: 0;
    max-width: 380px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.6s;
}

.blog-hero .right p {
    font-size: 20px;
    line-height: 28px;
    color: rgba(30, 30, 30, 0.65);
    margin-bottom: 24px;
}

/* Search bar */
.search-wrap {
    position: relative;
}

.search-wrap input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 1px solid rgba(30, 30, 30, 0.2);
    border-radius: 30px;
    font-size: 15px;
    font-family: "DM Sans", sans-serif;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    outline: none;
    transition: border-color ease 250ms, background ease 250ms;
    color: #1E1E1E;
}

.search-wrap input::placeholder {
    color: rgba(30, 30, 30, 0.35);
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
}

.search-wrap input:focus {
    border-color: #1E1E1E;
    background: #fff;
}

.search-wrap .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.35;
}

/* ── FILTER BAR ── */
.blog-filter {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed rgba(30, 30, 30, 0.2);
}

.blog-filter .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-filter .filter-label {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    color: rgba(30, 30, 30, 0.4);
    margin-right: 8px;
}

.blog-filter button {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(30, 30, 30, 0.18);
    background: transparent;
    font-size: 13px;
    line-height: 16px;
    color: rgba(30, 30, 30, 0.6);
    font-family: "Roboto Mono", monospace;
    transition: all ease 250ms;
}

.blog-filter button.active,
.blog-filter button:hover {
    background-color: #1E1E1E;
    color: #fff;
    border-color: #1E1E1E;
}

/* ── FEATURED POST ── */
.blog-featured {
    padding-top: 100px;
    padding-bottom: 60px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(30, 30, 30, 0.1);
    cursor: pointer;
    transition: box-shadow ease 400ms, transform ease 400ms;
    text-decoration: none;
}

.featured-card:hover {
    box-shadow: 0 16px 60px rgba(30, 30, 30, 0.1);
    transform: translateY(-4px);
}

.featured-card .fc-image {
    background: linear-gradient(135deg, #1E1E1E 0%, #3A3A3A 100%);
    min-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.featured-card .fc-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.6;
}

.featured-card .fc-image-overlay {
    position: relative;
    z-index: 2;
}

.featured-card .fc-image-overlay .fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFD600;
    border-radius: 30px;
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: #1E1E1E;
    font-weight: 500;
}

.featured-card .fc-body {
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-card .fc-body .fc-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.featured-card .fc-body .fc-category {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.4);
    letter-spacing: 0.05em;
}

.featured-card .fc-body .fc-date {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.3);
}

.featured-card .fc-body h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1E1E1E;
}

.featured-card .fc-body p {
    font-size: 18px;
    line-height: 27px;
    color: rgba(30, 30, 30, 0.65);
    margin-bottom: 40px;
    flex: 1;
}

.featured-card .fc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px dashed rgba(30, 30, 30, 0.15);
}

.featured-card .fc-footer .fc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-card .fc-footer .fc-author img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.featured-card .fc-footer .fc-author-name {
    font-size: 15px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    color: #1E1E1E;
}

.featured-card .fc-footer .fc-read-time {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.35);
}

.featured-card .fc-footer .fc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(30, 30, 30, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all ease 300ms;
}

.featured-card:hover .fc-arrow {
    background: #FFD600;
    border-color: #FFD600;
}

/* ── POSTS GRID ── */
.blog-grid-section {
    padding-top: 20px;
    padding-bottom: 140px;
}

.blog-grid-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-grid-section .section-header h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.blog-grid-section .section-header .post-count {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    color: rgba(30, 30, 30, 0.35);
}

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

/* ── BLOG CARD ── */
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 30, 30, 0.08);
    background: #fff;
    cursor: pointer;
    transition: all ease 400ms;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #1E1E1E;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(30, 30, 30, 0.08);
}

.blog-card .bc-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.blog-card .bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform ease 500ms;
}

.blog-card:hover .bc-image img {
    transform: scale(1.04);
}

/* Gradient placeholder when no image */
.bc-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-img-placeholder span {
    font-family: "DM Serif Text", serif;
    font-style: italic;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.08);
    user-select: none;
}

.blog-card .bc-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .bc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card .bc-category {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(30, 30, 30, 0.4);
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border: 1px solid rgba(30, 30, 30, 0.12);
    border-radius: 20px;
}

.blog-card .bc-date {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(30, 30, 30, 0.3);
}

.blog-card h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1E1E1E;
    flex: 1;
}

.blog-card p {
    font-size: 15px;
    line-height: 22px;
    color: rgba(30, 30, 30, 0.6);
    margin-bottom: 24px;
}

.blog-card .bc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px dashed rgba(30, 30, 30, 0.12);
    margin-top: auto;
}

.blog-card .bc-read-time {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(30, 30, 30, 0.3);
}

.blog-card .bc-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(30, 30, 30, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all ease 300ms;
}

.blog-card:hover .bc-arrow {
    background: #FFD600;
    border-color: #FFD600;
}

/* ── LOAD MORE ── */
.load-more-wrap {
    text-align: center;
    padding-top: 60px;
}

.btn-load-more {
    background: transparent;
    border: 1px solid rgba(30, 30, 30, 0.2);
    color: rgba(30, 30, 30, 0.7);
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-family: "Roboto Mono", monospace;
    transition: all ease 300ms;
}

.btn-load-more:hover {
    border-color: #1E1E1E;
    color: #1E1E1E;
}

/* ── NEWSLETTER ── */
.blog-newsletter {
    padding-top: 0;
    padding-bottom: 140px;
}

.blog-newsletter .container {
    background: #1E1E1E;
    border-radius: 20px;
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blog-newsletter .nl-left .caption {
    color: rgba(255, 255, 255, 0.35);
}

.blog-newsletter .nl-left h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.blog-newsletter .nl-left h2 .highlight {
    color: #fff;
}

.blog-newsletter .nl-left p {
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.55);
}

.blog-newsletter .nl-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nl-input-row {
    display: flex;
    gap: 12px;
}

.nl-input-row input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    color: #fff;
    outline: none;
    transition: border-color ease 250ms, background ease 250ms;
}

.nl-input-row input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
}

.nl-input-row input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.nl-input-row button {
    background: #FFD600;
    color: #1E1E1E;
    border: none;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-family: "Roboto Mono", monospace;
    white-space: nowrap;
    transition: all ease 300ms;
}

.nl-input-row button:hover {
    background: #fff;
}

.nl-disclaimer {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 18px;
}

/* ── FOOTER ── */
.footer {
    background-color: #1E1E1E;
    padding-top: 120px;
    padding-bottom: 40px;
}

.footer .main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.footer .col.double { grid-column: span 2; }

.footer .col .footer-logo {
    display: block;
    margin-bottom: 50px;
}

.footer .col .media {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.footer .col .media .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all ease 300ms;
}

.footer .col .media .icon:hover { background-color: #F3C403; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 20px;
    line-height: 26px;
    transition: all ease 300ms;
    text-decoration: none;
}

.footer-links span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.50);
}

.footer .col .footer-links a { color: rgba(255, 255, 255, 0.70); }
.footer .col .footer-links a:hover { color: #F3C403; }
.footer .col.double .footer-links a { color: rgba(255, 255, 255, 1); }
.footer .col.double .footer-links a:hover { color: #F3C403; }

.footer .col h3 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    font-family: "Roboto Mono", monospace;
    color: #fff;
}

.copyright {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.copyright a {
    font-size: 16px;
    line-height: 22px;
    transition: all ease 300ms;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
}

.copyright a:hover { color: #fff; }

/* ── SCROLL FADE-UP ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }


/* ================================================================
   RESPONSIVE - 1200px → 980px → 850px → 650px → 400px
   ================================================================ */

/* ── 1200px ── */
@media screen and (max-width: 1200px) {

    .blog-hero h1 {
        font-size: 74px;
        line-height: 84px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-newsletter .container {
        padding: 60px;
        gap: 40px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 40px;
        line-height: 52px;
    }
}

/* ── 980px ── */
@media screen and (max-width: 980px) {

    /* Hero - stack */
    .blog-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .blog-hero h1 {
        font-size: 60px;
        line-height: 72px;
    }

    .blog-hero .right {
        max-width: 100%;
        width: 100%;
    }

    /* Featured - stack */
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-card .fc-image {
        min-height: 300px;
    }

    .featured-card .fc-body {
        padding: 40px;
    }

    .featured-card .fc-body h2 {
        font-size: 34px;
        line-height: 44px;
    }

    /* Newsletter - stack */
    .blog-newsletter .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 36px;
        line-height: 48px;
    }

    /* Footer */
    .footer .main {
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
    }

    .footer .col.double { grid-column: span 1; }
    .footer .col .footer-logo { margin-bottom: 30px; }
    .footer .col .media { margin-top: 30px; }
}

/* ── 850px - hamburger ── */
@media screen and (max-width: 850px) {

    .navbar .links { display: none; }

    .mobile-menu {
        display: flex;
        width: 50px;
        height: 50px;
        min-width: 50px;
        max-width: 50px;
        overflow: hidden;
        border-radius: 50px;
    }

    .mobile-menu .open {
        width: 50px; min-width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        background-color: #1E1E1E;
        transition: all ease 450ms;
    }

    .mobile-menu .close {
        width: 50px; min-width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        background-color: #F3C403;
        transition: all ease 450ms;
    }

    .blog-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .blog-hero h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .blog-featured { padding-top: 60px; }

    .featured-card .fc-body { padding: 32px 28px; }

    .featured-card .fc-body h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .featured-card .fc-body p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 28px;
    }

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

    .blog-grid-section { padding-bottom: 100px; }

    .blog-newsletter { padding-bottom: 100px; }

    .blog-newsletter .container {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 30px;
        line-height: 40px;
    }

    /* Stack newsletter input+button */
    .nl-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .nl-input-row button {
        width: 100%;
        justify-content: center;
        display: flex;
        padding: 16px;
    }

    .footer { padding-top: 80px; }
    .footer .col .footer-logo { width: 180px; }
}

/* ── 650px ── */
@media screen and (max-width: 650px) {

    section { padding-inline: 20px; }

    .caption {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 18px;
    }

    .blog-hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .blog-hero h1 {
        font-size: 38px;
        line-height: 48px;
    }

    .blog-hero .right p {
        font-size: 17px;
        line-height: 25px;
    }

    .blog-filter .filter-label { width: 100%; margin-bottom: 4px; }
    .blog-filter button { padding: 8px 14px; font-size: 12px; }

    .featured-card .fc-image { min-height: 220px; }

    .featured-card .fc-body {
        padding: 24px 20px;
    }

    .featured-card .fc-body h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .featured-card .fc-footer {
        flex-wrap: wrap;
        gap: 14px;
    }

    .blog-card .bc-body { padding: 22px 20px 18px; }

    .blog-card h3 {
        font-size: 19px;
        line-height: 26px;
    }

    .blog-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-newsletter .container {
        padding: 32px 22px;
        gap: 28px;
        border-radius: 14px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .blog-newsletter .nl-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer .main { gap: 40px; }
    .footer-links a { font-size: 18px; line-height: 24px; }
    .footer .col h3 { margin-bottom: 20px; font-size: 22px; line-height: 28px; }
    .copyright { flex-direction: column; align-items: start; gap: 15px; }
}

/* ── 400px ── */
@media screen and (max-width: 400px) {

    .blog-hero h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .featured-card .fc-body h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-card h3 {
        font-size: 17px;
        line-height: 24px;
    }

    .blog-newsletter .nl-left h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .nl-input-row input {
        padding: 14px 16px;
        font-size: 15px;
    }
}
/* ══════════════════════════════════════════════════════════════════
   HELP CENTER SHELL — sidebar layout, replaces the site navbar/footer
   on the help center hub so it reads as its own product.
   ══════════════════════════════════════════════════════════════════ */

body { background: #FAFAFA; }

.help-shell { display: flex; align-items: flex-start; min-height: 100vh; }

.help-sidebar {
    width: 264px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #E8E8E8;
    padding: 24px 18px 0;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logo, search and the ticket CTA stay put; only the topic list in the
   middle scrolls - with 5 nav groups now instead of 3, the full list no
   longer reliably fits a single screen, and the CTA needs to stay reachable
   without being pushed off the bottom of the viewport. */
.side-nav-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-bottom: 12px;
}

.help-sidebar .side-top {
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.help-sidebar .side-top a.logo-link { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-decoration: none; }
.help-sidebar .side-top img.side-logo { height: 22px; }
.help-sidebar .side-top .side-logo-tag {
    font-family: "Roboto Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.4;
}

.side-search { position: relative; padding: 0 10px; }
.side-search input {
    width: 100%;
    padding: 10px 34px 10px 12px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    outline: none;
    background: #FAFAFA;
    transition: border-color 150ms ease;
}
.side-search input:focus { border-color: #1E1E1E; background: #fff; }
.side-search svg { position: absolute; right: 21px; top: 50%; transform: translateY(-50%); opacity: 0.4; pointer-events: none; }

.side-nav-section h4 {
    font-family: "Roboto Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 8px;
    padding: 0 10px;
}
.side-nav-section .side-link {
    display: block;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 13.5px;
    line-height: 18px;
    color: #1E1E1E;
    text-decoration: none;
    opacity: 0.72;
    margin-bottom: 1px;
    transition: background 120ms ease, opacity 120ms ease;
}
.side-nav-section .side-link:hover { background: #F4F4F4; opacity: 1; }
.side-nav-section .side-link.active { background: #1E1E1E; color: #fff; opacity: 1; }
.side-nav-section .side-link.top-level { font-weight: 600; opacity: 1; }

.side-cta-wrap {
    flex-shrink: 0;
    padding: 16px 0 22px;
    border-top: 1px solid #F0F0F0;
}
.side-cta-wrap .cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1E1E1E;
    color: #fff;
    font-weight: 600;
    opacity: 1;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13.5px;
    transition: opacity 150ms ease;
}
.side-cta-wrap .cta-link:hover { opacity: 0.82; }
.side-cta-wrap .cta-link svg { flex-shrink: 0; opacity: 0.9; }

.help-content { flex: 1; min-width: 0; }
.content-inner { max-width: 900px; margin: 0 auto; padding: 56px 48px 100px; }

.page-header { margin-bottom: 44px; }
.page-header .caption {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 10px;
}
.page-header h1 { font-size: 38px; line-height: 46px; font-weight: 500; margin-bottom: 12px; }
.page-header p { font-size: 15px; line-height: 24px; opacity: 0.65; max-width: 560px; }

/* Overrides the generic `section { padding-inline: 40px }` rule above (a
   leftover from blog.css) - .help-section is a real <section> and was
   being inset 40px on each side, making .help-list narrower than sibling
   elements like .page-header that aren't <section>s. */
.help-section { margin-bottom: 40px; padding-inline: 0; }
.help-section h2 { font-size: 18px; font-weight: 600; margin-bottom: 14px; }

/* ── Help list rows (StackOverflow/W3Schools-style index, not blog cards) ── */
.help-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    overflow: hidden;
}
.help-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-decoration: none;
    border-bottom: 1px solid #F0F0F0;
    transition: background 120ms ease;
}
.help-list-item:last-child { border-bottom: none; }
.help-list-item:hover { background: #FAFAFA; }
.help-list-item .item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto Mono", monospace;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #fff;
}
.help-list-item .item-body { flex: 1; min-width: 0; }
.help-list-item .item-body h3 { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.help-list-item .item-body p { font-size: 13px; line-height: 19px; opacity: 0.6; margin: 0; }
.help-list-item .item-meta {
    flex-shrink: 0;
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    opacity: 0.4;
    white-space: nowrap;
}
.help-list-item .item-arrow {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E1E1E;
    opacity: 0.5;
}
.help-list-item:hover .item-arrow { opacity: 1; border-color: #1E1E1E; }

.contact-cta {
    background: #1E1E1E;
    border-radius: 16px;
    padding: 40px 44px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.contact-cta .cta-left { flex: 1; min-width: 240px; }
.contact-cta .caption { font-family: "Roboto Mono", monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.contact-cta h2 { color: #fff; font-size: 26px; font-weight: 500; margin-bottom: 8px; }
.contact-cta h2 .highlight { color: #fff; }
.contact-cta p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 22px; }
.contact-cta .cta-right { text-align: right; flex-shrink: 0; }
.contact-cta a.cta-email-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: #FFD600; color: #1E1E1E; text-decoration: none;
    font-family: "Roboto Mono", monospace; font-size: 13px; letter-spacing: 0.04em;
    padding: 14px 22px; border-radius: 8px; transition: transform 140ms ease;
}
.contact-cta a.cta-email-btn:hover { transform: translateY(-1px); }
.contact-cta .cta-disclaimer { margin-top: 10px; font-size: 12.5px; }

.help-footer-bar { text-align: center; padding-top: 40px; }
.help-footer-bar p { font-family: "Roboto Mono", monospace; font-size: 12px; opacity: 0.3; }

/* ── Ticket / inquiry form (help/ticket.html) ── */
.ticket-form { background: #fff; border: 1px solid #E4E4E4; border-radius: 10px; padding: 32px; }
.ticket-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ticket-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ticket-form .form-group { margin-bottom: 18px; }
.ticket-form .form-group:last-of-type { margin-bottom: 0; }
.ticket-form label {
    display: block;
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 8px;
}
.ticket-form input,
.ticket-form select,
.ticket-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    background: #FAFAFA;
    outline: none;
    transition: border-color 150ms ease;
}
.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus { border-color: #1E1E1E; background: #fff; }
.ticket-form textarea { resize: vertical; min-height: 130px; }
.ticket-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231E1E1E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    color: #1E1E1E;
}
.ticket-form select:invalid { color: rgba(30,30,30,0.4); }
.ticket-form .ticket-submit {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1E1E1E;
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Roboto Mono", monospace;
    transition: opacity 200ms ease;
}
.ticket-form .ticket-submit:hover { opacity: 0.85; }

.ticket-banner {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22px;
}
.ticket-banner.success { background: #EAF7EE; border: 1px solid #BFE6CB; color: #1E5631; }
.ticket-banner.error { background: #FDECEC; border: 1px solid #F3B9B9; color: #7A1E1E; }
.ticket-banner .ticket-number {
    display: inline-block;
    font-family: "Roboto Mono", monospace;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    background: rgba(30,30,30,0.08);
    color: #1E1E1E;
    padding: 2px 8px;
    border-radius: 5px;
}

/* ── Mobile top bar + collapsible sidebar drawer ── */
.mobile-topbar { display: none; }
.sidebar-backdrop { display: none; }

@media (max-width: 880px) {
    .mobile-topbar {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 14px 20px;
        background: #fff;
        border-bottom: 1px solid #E8E8E8;
        position: sticky;
        top: 0;
        z-index: 30;
    }
    .mobile-topbar-row { display: flex; align-items: center; gap: 14px; }
    .mobile-topbar .hamburger-btn {
        background: #fff;
        border: 1px solid #E4E4E4;
        border-radius: 8px;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #1E1E1E;
        padding: 0;
    }
    .mobile-topbar .mobile-brand { display: flex; align-items: center; gap: 8px; min-width: 0; }
    .mobile-topbar .mobile-logo { height: 20px; flex-shrink: 0; }
    .mobile-topbar .mobile-brand-tag {
        font-family: "Roboto Mono", monospace;
        font-size: 10.5px;
        letter-spacing: 0.03em;
        opacity: 0.45;
        padding-left: 8px;
        border-left: 1px solid #E4E4E4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Search moves out of the collapsible drawer entirely on mobile, so
       it's usable without opening the hamburger menu first. */
    .mobile-topbar .side-search { padding: 0; }
    .help-sidebar .side-search { display: none; }

    .help-shell { flex-direction: column; }
    .help-sidebar {
        width: 280px;
        max-width: 82vw;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        border-right: 1px solid #E8E8E8;
        border-bottom: none;
        padding: 20px 16px 0;
        transform: translateX(-100%);
        transition: transform 220ms ease;
        z-index: 50;
    }
    .help-sidebar.open { transform: translateX(0); box-shadow: 10px 0 30px rgba(0,0,0,0.15); }

    .sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(20,20,20,0.45);
        z-index: 40;
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }
    .sidebar-backdrop.open { opacity: 1; pointer-events: auto; }

    .content-inner { padding: 32px 20px 70px; }
    .page-header h1 { font-size: 28px; line-height: 36px; }
    .help-section .cards-row { grid-template-columns: 1fr; }
    .ticket-form { padding: 22px; }
    .ticket-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
    .contact-cta .cta-right { text-align: left; width: 100%; }
    .contact-cta a.cta-email-btn { width: 100%; }

    /* Drop the meta/arrow columns so title+description get the row's
       width instead of being squeezed into a narrow wrapping column -
       that squeeze was what made rows balloon to ~185px tall. */
    .help-list-item { padding: 14px 16px; gap: 12px; }
    .help-list-item .item-icon { width: 30px; height: 30px; font-size: 10px; }
    .help-list-item .item-body h3 { font-size: 14px; line-height: 19px; }
    .help-list-item .item-body p { font-size: 12.5px; line-height: 18px; }
    .help-list-item .item-meta,
    .help-list-item .item-arrow { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   HELP ARTICLE CONTENT — scoped under .inner so it can never leak
   onto the hub page's own elements, and so it wins over the generic
   `a { font-family: Roboto Mono }` rule above for in-paragraph links.
   Shared here (not per-page inline) so SPA content-swaps keep full
   styling regardless of which article was fetched.
   ══════════════════════════════════════════════════════════════════ */

.main { flex: 1; padding: 60px 40px 100px; }
.inner { max-width: 760px; margin: 0 auto; }
.inner a { font-family: inherit; }

.inner .doc-label {
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 16px;
}
.inner h1 { font-size: 42px; line-height: 52px; font-weight: 500; margin-bottom: 10px; }
.inner .intro {
    font-size: 16px;
    line-height: 27px;
    opacity: 0.7;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E8E8E8;
}

.inner h2 { font-size: 20px; font-weight: 600; margin: 48px 0 12px; }
.inner h2 .num {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.35;
    margin-right: 8px;
}
.inner h3.step-title {
    font-size: 15px;
    font-weight: 600;
    margin: 28px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.inner h3.step-title .step-num {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    color: #1E1E1E;
    background: #FFD600;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inner p { font-size: 15px; line-height: 26px; opacity: 0.75; margin-bottom: 14px; }
.inner code {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    background: #F0F0F0;
    padding: 2px 6px;
    border-radius: 4px;
}
.inner ul.plain-list { margin: 0 0 14px 20px; }
.inner ul.plain-list li { font-size: 15px; line-height: 26px; opacity: 0.75; margin-bottom: 4px; }

.inner .highlight-box {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-left: 3px solid #FFD600;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 16px 0 24px;
}
.inner .highlight-box p { margin: 0; opacity: 1; font-size: 14px; }
.inner .highlight-box p + p { margin-top: 8px; }

.inner .settings-table {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    margin: 16px 0 28px;
    overflow: hidden;
}
.inner .settings-table .row { display: grid; grid-template-columns: 180px 1fr; border-bottom: 1px solid #F0F0F0; }
.inner .settings-table .row:last-child { border-bottom: none; }
.inner .settings-table .row div { padding: 12px 16px; font-size: 14px; }
.inner .settings-table .row .label {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    opacity: 0.5;
    background: #FAFAFA;
    border-right: 1px solid #F0F0F0;
}
.inner .settings-table .row .value { font-family: "Roboto Mono", monospace; }

.inner .nav-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0 32px; }
.inner .nav-card { background: #fff; border: 1px solid #E8E8E8; border-radius: 10px; padding: 16px 18px; }
.inner .nav-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.inner .nav-card p { font-size: 13px; line-height: 19px; margin: 0; opacity: 0.6; }

.inner .shot-img {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(20,30,50,.07);
}
.inner .shot-img img { display: block; width: 100%; }

.inner .illustration {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 20px 28px;
    margin-bottom: 32px;
}
.inner .illustration svg { display: block; width: 100%; height: auto; }

.inner .download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0 32px; }
.inner .download-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inner .download-card .platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner .download-card h4 { font-size: 16px; font-weight: 600; }
.inner .download-card p { font-size: 13px; line-height: 20px; margin-bottom: 0; flex: 1; }
.inner .download-card a.dl-btn {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1E1E1E;
    background: #FFD600;
    padding: 10px 14px;
    border-radius: 6px;
    width: fit-content;
    transition: opacity 200ms ease;
}
.inner .download-card a.dl-btn:hover { opacity: 0.8; }

.inner .contact-block { background: #1E1E1E; border-radius: 10px; padding: 28px 32px; margin-top: 48px; }
.inner .contact-block p { color: rgba(255,255,255,0.55); margin-bottom: 6px; font-size: 14px; opacity: 1; }
.inner .contact-block a { font-family: "Roboto Mono", monospace; font-size: 14px; color: #FFD600; text-decoration: none; }

.inner .footer-bar {
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner .footer-bar p { font-family: "Roboto Mono", monospace; font-size: 12px; opacity: 0.3; }

@media (max-width: 880px) {
    .main { padding-inline: 20px; }
    .inner h1 { font-size: 30px; line-height: 40px; }
    .inner .contact-block { padding: 20px; }
    .inner .settings-table .row { grid-template-columns: 130px 1fr; }
    .inner .nav-card-grid { grid-template-columns: 1fr; }
    .inner .download-grid { grid-template-columns: 1fr; }
}
