/* ═══════════════════════════════════════════════════════════
   FreePNGAssets — main.css
   Consolidated from all 5 HTML mockups
═══════════════════════════════════════════════════════════ */

/* 1. Reset & Variables
─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: #080808; color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }

:root {
  --p:       #7C5CFC;
  --p2:      #5A3EE0;
  --p-glow:  rgba(124,92,252,.38);
  --p-faint: rgba(124,92,252,.08);
  --ink:     #080808;
  --ink2:    #0f0f0f;
  --ink3:    #161616;
  --ink4:    #1e1e1e;
  --m1:      rgba(255,255,255,.62);
  --m2:      rgba(255,255,255,.36);
  --m3:      rgba(255,255,255,.10);
  --b:       rgba(255,255,255,.07);
  --radius:  12px;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

/* 2. Typography
─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

.eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--p); display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--p); }

.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: #fff; margin-bottom: 14px;
}
.sec-title em { font-style: italic; color: var(--m1); }

.view-all { font-size: 13px; font-weight: 600; color: var(--p); display: flex; align-items: center; gap: 5px; transition: gap .2s; }
.view-all:hover { gap: 9px; }

/* Section shared */
.sec { padding: 90px 40px; }
.wrap { max-width: 1320px; margin: 0 auto; }

/* 3. Header / Nav
─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: 64px;
  display: flex; align-items: center; padding: 0 32px;
  background: rgba(8,8,8,.8); backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,.06); transition: background .3s;
}
.nav.scrolled { background: rgba(8,8,8,.97); }
.nav-inner { width: 100%; max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg,#7C5CFC,#4A2FCC);
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900;
}
.logo-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; letter-spacing: -.4px; }
.logo-name span { color: var(--p); }
.nav-cats { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-cats a { font-size: 13px; color: var(--m1); font-weight: 450; padding: 6px 12px; border-radius: 7px; transition: all .2s; }
.nav-cats a:hover, .nav-cats a.on { color: #fff; background: var(--m3); }

/* Explore dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  padding: 8px 6px 6px; min-width: 200px; z-index: 600;
}
.nav-dropdown-menu-inner {
  background: var(--ink3); border: 1px solid var(--b); border-radius: 10px;
  padding: 6px; box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; font-size: 13px; color: var(--m1); padding: 8px 12px; border-radius: 6px; transition: all .2s; white-space: nowrap; }
.nav-dropdown-menu a:hover { color: #fff; background: var(--m3); }

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

/* Search in nav */
.nav-search-form { display: flex; align-items: center; background: var(--ink3); border: 1px solid var(--b); border-radius: 8px; padding: 4px 6px 4px 12px; gap: 6px; transition: border-color .2s; }
.nav-search-form:focus-within { border-color: rgba(124,92,252,.4); }
.nav-search-form input { background: none; border: none; outline: none; font-size: 13px; color: #fff; font-family: var(--font-body); padding: 4px 0; width: 160px; }
.nav-search-form input::placeholder { color: var(--m2); }
.nav-search-form button { background: none; border: none; color: var(--m2); font-size: 14px; cursor: pointer; padding: 0 4px; transition: color .2s; }
.nav-search-form button:hover { color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; display: block; }
.nav.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,.98); backdrop-filter: blur(20px); z-index: 499;
  padding: 32px; overflow-y: auto;
}
.nav.nav-open .nav-mobile-menu { display: block; }
.nav-mobile-menu a { display: block; font-size: 18px; color: var(--m1); padding: 14px 0; border-bottom: 1px solid var(--b); transition: color .2s; }
.nav-mobile-menu a:hover { color: #fff; }

/* Buttons */
.btn-ghost { font-size: 13px; font-weight: 500; color: var(--m1); padding: 8px 16px; border-radius: 8px; border: 1px solid var(--b); transition: all .2s; }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.18); }
.btn-primary {
  font-size: 13px; font-weight: 600; color: #fff; padding: 9px 20px; border-radius: 9px;
  background: linear-gradient(135deg,#7C5CFC,#5235E0);
  box-shadow: 0 0 20px var(--p-glow); transition: all .25s; display: inline-flex; align-items: center;
}
.btn-primary:hover { box-shadow: 0 0 36px var(--p-glow); transform: translateY(-1px); }

/* 4. Footer
─────────────────────────────────────────────────────────── */
.footer { background: var(--ink2); border-top: 1px solid var(--b); padding: 40px; }
.footer-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.footer-name span { color: var(--m2); font-weight: 400; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; color: var(--m2); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11.5px; color: var(--m2); }

/* 5. Asset Card
─────────────────────────────────────────────────────────── */
.asset-card {
  background: var(--ink3); border: 1px solid var(--b); border-radius: var(--radius);
  overflow: hidden; position: relative; cursor: pointer;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .25s, box-shadow .3s;
}
.asset-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.15); box-shadow: 0 20px 52px rgba(0,0,0,.6); }
.asset-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.asset-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s cubic-bezier(.16,1,.3,1); display: block; }
.asset-card:hover .asset-card__media img { transform: scale(1.05); }
.asset-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.asset-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%);
  opacity: 0; transition: opacity .2s; display: flex; align-items: flex-end; padding: 14px;
}
.asset-card:hover .asset-card__overlay { opacity: 1; }
.asset-card__tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px 12px; }

/* 6. Tag Pill
─────────────────────────────────────────────────────────── */
.tag-pill { font-size: 11px; font-weight: 500; color: var(--m2); background: var(--ink4); border: 1px solid var(--b); border-radius: 20px; padding: 3px 10px; transition: all .2s; }
.tag-pill:hover { color: #fff; border-color: rgba(255,255,255,.2); }

/* Aspect ratio tag pill */
.tag-pill--ratio {
  color: var(--p); border-color: rgba(124,92,252,.3);
  background: rgba(124,92,252,.08); cursor: default; font-weight: 600;
}

/* FREE badge */
.at-free {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  background: rgba(124,92,252,.92); backdrop-filter: blur(6px);
  color: #fff; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 4px;
}

/* At-info (title overlay) */
.at-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px 12px 50px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
  transform: translateY(8px); opacity: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s;
}
.asset-card:hover .at-info { transform: translateY(0); opacity: 1; }
.at-title { font-size: 11.5px; font-weight: 600; color: #fff; line-height: 1.3; }

/* Download button inside card */
.btn-download {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg,#7C5CFC,#5235E0); color: #fff;
  font-size: 11.5px; font-weight: 600; padding: 7px 14px; border-radius: 20px;
  box-shadow: 0 0 16px rgba(124,92,252,.3); transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.btn-download:hover { box-shadow: 0 0 28px rgba(124,92,252,.5); }
.btn-download--soon { background: rgba(255,255,255,.1); box-shadow: none; cursor: default; }

/* Checker pattern for PNGs */
.at-checker {
  width: 100%; height: 100%;
  background-color: #0f0f0f;
  background-image:
    linear-gradient(45deg, #181818 25%, transparent 25%),
    linear-gradient(-45deg, #181818 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #181818 75%),
    linear-gradient(-45deg, transparent 75%, #181818 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
}

/* Asset grid (used in taxonomy, archive, tag, search) */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

/* 7. Homepage — Hero
─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 40px 60px; position: relative; overflow: hidden; text-align: center; background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(124,92,252,.12), transparent 65%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,92,252,.1); border: 1px solid rgba(124,92,252,.3);
  border-radius: 30px; padding: 5px 14px 5px 8px; margin-bottom: 28px;
  animation: fadein .6s .1s both;
}
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--p);
  box-shadow: 0 0 8px var(--p); animation: bpulse 2s infinite;
}
@keyframes bpulse { 0%,100% { box-shadow: 0 0 8px var(--p); } 50% { box-shadow: 0 0 18px var(--p); } }
.badge-txt { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--p); }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 9vw, 7.5rem); font-weight: 700; letter-spacing: -.04em; line-height: .98;
  margin-bottom: 20px; animation: fadein .7s .25s both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #A38BFF 0%, #7C5CFC 45%, #C4B5FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(.95rem, 1.8vw, 1.1rem); color: var(--m1); line-height: 1.72; max-width: 520px; margin: 0 auto 36px; animation: fadein .7s .4s both; }
.search-wrap { position: relative; max-width: 680px; margin: 0 auto 28px; animation: fadein .7s .55s both; }
.search-bar {
  width: 100%; display: flex; align-items: center;
  background: var(--ink3); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 6px 8px 6px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(124,92,252,.08);
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap:focus-within .search-bar { border-color: rgba(124,92,252,.45); box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 0 3px rgba(124,92,252,.1); }
.search-icon { font-size: 17px; margin-right: 10px; color: var(--m2); flex-shrink: 0; }
.search-input { flex: 1; background: none; border: none; outline: none; font-size: 15px; color: #fff; font-family: var(--font-body); padding: 8px 0; }
.search-input::placeholder { color: var(--m2); }
.search-btn {
  background: linear-gradient(135deg,#7C5CFC,#5235E0); color: #fff;
  font-size: 13.5px; font-weight: 600; padding: 11px 24px; border-radius: 9px;
  flex-shrink: 0; transition: all .2s; box-shadow: 0 0 16px rgba(124,92,252,.35);
}
.search-btn:hover { box-shadow: 0 0 28px rgba(124,92,252,.55); transform: translateY(-1px); }
.cat-pills { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; animation: fadein .7s .7s both; }
.cpill {
  display: flex; align-items: center; gap: 6px;
  background: var(--ink3); border: 1px solid var(--b);
  border-radius: 30px; padding: 7px 15px; font-size: 12.5px; font-weight: 500; color: var(--m1);
  transition: all .2s; cursor: pointer;
}
.cpill:hover { background: var(--p-faint); border-color: rgba(124,92,252,.35); color: #fff; }
.cpill span { font-size: 14px; }

/* 8. Homepage — Ticker
─────────────────────────────────────────────────────────── */
.ticker-wrap { overflow: hidden; background: var(--ink); border-top: 1px solid var(--b); border-bottom: 1px solid var(--b); padding: 14px 0; }
.ticker-track { display: flex; }
.ticker-inner { display: flex; gap: 10px; animation: tick 40s linear infinite; width: max-content; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
.tpill {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 30px; border: 1px solid var(--b); background: var(--ink2);
  font-size: 11.5px; font-weight: 500; color: var(--m1);
}
.tpill a { color: inherit; transition: color .2s; }
.tpill:hover a { color: #fff; }
.tpill-dot { width: 5px; height: 5px; border-radius: 50%; }
.tsep { color: var(--m3); display: flex; align-items: center; padding: 0 2px; }

/* 9. Homepage — Trending Row
─────────────────────────────────────────────────────────── */
.spotlight-sec { background: #000; border-top: 1px solid rgba(255,255,255,.05); padding: 80px 0 0; overflow: hidden; }
.spotlight-head { padding: 0 40px 44px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; letter-spacing: -.02em;
  text-transform: uppercase; line-height: .98;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.spotlight-mark {
  width: clamp(44px,5.5vw,66px); height: clamp(44px,5.5vw,66px);
  border-radius: 14px; background: linear-gradient(135deg,#7C5CFC,#4A2FCC);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: clamp(18px,2.8vw,30px); font-weight: 900; color: #fff;
  box-shadow: 0 0 28px rgba(124,92,252,.5); flex-shrink: 0;
}
.spotlight-sub { font-size: 13.5px; color: rgba(255,255,255,.32); max-width: 420px; line-height: 1.6; padding-bottom: 6px; }
.strack-outer { position: relative; }
.strack-outer::before, .strack-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.strack-outer::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.strack-outer::after { right: 0; background: linear-gradient(to left, #000, transparent); }
.strack { display: flex; gap: 3px; overflow-x: auto; scrollbar-width: none; cursor: grab; }
.strack::-webkit-scrollbar { display: none; }
.strack:active { cursor: grabbing; }
.sc { flex-shrink: 0; width: 220px; position: relative; overflow: hidden; cursor: pointer; transition: filter .3s; }
.sc:hover { filter: brightness(1.1); }
.sc-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.sc-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 55%); }
.sc-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 14px 16px; border-top: 3px solid; }
.sc-name { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; line-height: 1.3; }
.sc-use { font-size: 10px; color: rgba(255,255,255,.42); margin-top: 3px; line-height: 1.4; }
.sc:nth-child(1) .sc-bar { border-color: #F5C842; } .sc:nth-child(1) .sc-name { color: #F5C842; }
.sc:nth-child(2) .sc-bar { border-color: #7C5CFC; } .sc:nth-child(2) .sc-name { color: #A38BFF; }
.sc:nth-child(3) .sc-bar { border-color: #00D4AA; } .sc:nth-child(3) .sc-name { color: #00D4AA; }
.sc:nth-child(4) .sc-bar { border-color: #FB923C; } .sc:nth-child(4) .sc-name { color: #FB923C; }
.sc:nth-child(5) .sc-bar { border-color: #38BDF8; } .sc:nth-child(5) .sc-name { color: #38BDF8; }
.sc:nth-child(6) .sc-bar { border-color: #F43F5E; } .sc:nth-child(6) .sc-name { color: #F87171; }
.sc:nth-child(7) .sc-bar { border-color: #4ADE80; } .sc:nth-child(7) .sc-name { color: #4ADE80; }
.sc:nth-child(8) .sc-bar { border-color: #E879F9; } .sc:nth-child(8) .sc-name { color: #E879F9; }
.sc:nth-child(9) .sc-bar { border-color: #F5C842; } .sc:nth-child(9) .sc-name { color: #F5C842; }
.sc:nth-child(10) .sc-bar { border-color: #A38BFF; } .sc:nth-child(10) .sc-name { color: #A38BFF; }
.sc:nth-child(11) .sc-bar { border-color: #00D4AA; } .sc:nth-child(11) .sc-name { color: #00D4AA; }
.sc:nth-child(12) .sc-bar { border-color: #FB923C; } .sc:nth-child(12) .sc-name { color: #FB923C; }
.spotlight-foot { display: flex; align-items: center; justify-content: space-between; padding: 22px 40px; border-top: 1px solid rgba(255,255,255,.05); margin-top: 24px; }
.spotlight-foot-t { font-size: 12.5px; color: rgba(255,255,255,.28); }
.spotlight-foot-cta { font-size: 12.5px; font-weight: 600; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 9px 18px; transition: all .2s; }
.spotlight-foot-cta:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.25); }

/* 10. Homepage — Categories Grid
─────────────────────────────────────────────────────────── */
.cat-sec { background: var(--ink2); border-top: 1px solid var(--b); }
.cat-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; margin-top: 48px; }
.ccat {
  background: var(--ink3); border: 1px solid var(--b); border-radius: 14px;
  padding: 22px 16px 20px; text-align: center; cursor: pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1); position: relative; overflow: hidden; display: block;
}
.ccat:hover { background: var(--p-faint); border-color: rgba(124,92,252,.35); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.ccat-ico { font-size: 2rem; margin-bottom: 10px; display: block; }
.ccat-name { font-size: 12.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ccat-count { font-size: 10.5px; color: var(--m2); }
.ccat-new { position: absolute; top: 8px; right: 8px; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(245,200,66,.15); border: 1px solid rgba(245,200,66,.3); color: #F5C842; padding: 2px 6px; border-radius: 4px; }

/* 11. Homepage — Blog Section
─────────────────────────────────────────────────────────── */
.blog-sec { background: var(--ink); border-top: 1px solid var(--b); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.bc {
  background: var(--ink3); border: 1px solid var(--b); border-radius: 16px;
  overflow: hidden; cursor: pointer; transition: all .35s cubic-bezier(.16,1,.3,1); display: block;
}
.bc:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.14); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.bc-img { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.bc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.bc:hover .bc-img img { transform: scale(1.05); }
.bc-body { padding: 22px 22px 24px; }
.bc-tag { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p); margin-bottom: 8px; }
.bc-title { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 9px; }
.bc-excerpt { font-size: 13px; color: var(--m2); line-height: 1.65; margin-bottom: 16px; }
.bc-meta { display: flex; align-items: center; gap: 10px; font-size: 11.5px; color: var(--m2); }
.bc-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--m3); }

/* 12. Homepage — CTA
─────────────────────────────────────────────────────────── */
.cta-sec { padding: 100px 40px; background: var(--ink); text-align: center; border-top: 1px solid var(--b); position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(124,92,252,.1), transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: var(--font-heading); font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.08; color: #fff; margin-bottom: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-title em { font-style: italic; color: var(--m1); }
.cta-accent { background: linear-gradient(90deg,#7C5CFC,#B09FFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-sub { font-size: 1rem; color: var(--m1); margin-bottom: 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-fine { margin-top: 16px; font-size: 11.5px; color: var(--m2); }

/* 13. Archive / Category / Tag / Search Grid
─────────────────────────────────────────────────────────── */
.page-header { padding: 90px 40px 0; max-width: 1400px; margin: 0 auto; }
.page-header--blog { padding: 130px 40px 64px; position: relative; overflow: hidden; background: var(--ink); }
.page-header-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(124,92,252,.1), transparent 65%); }
.page-header-inner { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--m2); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: var(--m3); }
.cat-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-bottom: 28px; border-bottom: 1px solid var(--b); }
.cat-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--p); display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.cat-label::before { content: ''; width: 14px; height: 1.5px; background: var(--p); }
.cat-title { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.cat-count { font-size: 13px; color: var(--m2); margin-top: 8px; }
.cat-count strong { color: #fff; }

/* Filter bar */
.filter-bar { max-width: 1400px; margin: 0 auto; padding: 16px 40px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--b); }
.filter-group { display: flex; align-items: center; gap: 4px; background: var(--ink3); border: 1px solid var(--b); border-radius: 9px; padding: 3px; }
.fg { font-size: 12px; font-weight: 500; color: var(--m2); padding: 6px 14px; border-radius: 6px; cursor: pointer; transition: all .2s; white-space: nowrap; }
.fg:hover { color: #fff; }
.fg.on { background: var(--p-faint); color: #fff; border: 1px solid rgba(124,92,252,.25); }
.filter-pill { font-size: 12.5px; font-weight: 500; color: var(--m2); padding: 8px 18px; border-radius: 8px; border: 1px solid var(--b); cursor: pointer; transition: all .2s; background: var(--ink3); }
.filter-pill:hover { color: #fff; }
.filter-pill.active { background: var(--p-faint); color: #fff; border-color: rgba(124,92,252,.35); }
.filter-sep { width: 1px; height: 20px; background: var(--b); flex-shrink: 0; }

/* Main content area */
.main { max-width: 1400px; margin: 0 auto; padding: 28px 40px 100px; }

/* Load more */
.load-more { text-align: center; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--b); }
.load-more-count { font-size: 12.5px; color: var(--m2); margin-bottom: 20px; }
.load-more-count strong { color: #fff; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--b); flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; font-size: 13px; font-weight: 500; border: 1px solid var(--b); color: var(--m1); transition: all .2s; }
.pagination a:hover { border-color: rgba(255,255,255,.2); color: #fff; }
.pagination .current { background: var(--p-faint); border-color: rgba(124,92,252,.35); color: #fff; }

/* 14. Blog Index
─────────────────────────────────────────────────────────── */
.page-title { font-family: var(--font-heading); font-size: clamp(2.8rem,6vw,5rem); font-weight: 700; letter-spacing: -.04em; line-height: .98; }
.page-title em { font-style: normal; background: linear-gradient(90deg,#A38BFF,#7C5CFC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-sub { font-size: 14px; color: var(--m2); max-width: 340px; line-height: 1.7; padding-bottom: 4px; }

/* Blog category filter tabs */
.cat-filter { background: var(--ink2); border-bottom: 1px solid var(--b); padding: 0 40px; }
.cat-filter-inner { max-width: 1320px; margin: 0 auto; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-filter-inner::-webkit-scrollbar { display: none; }
.cf { font-size: 12.5px; font-weight: 500; color: var(--m2); padding: 16px 20px; border-bottom: 2px solid transparent; white-space: nowrap; cursor: pointer; transition: all .2s; flex-shrink: 0; }
.cf:hover { color: #fff; }
.cf.on { color: #fff; border-bottom-color: var(--p); }

/* Featured post */
.featured {
  display: grid; grid-template-columns: 1fr 420px; gap: 0;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--b);
  background: var(--ink3); margin-bottom: 56px; cursor: pointer;
  transition: border-color .3s, box-shadow .3s; text-decoration: none; color: inherit;
}
.featured:hover { border-color: rgba(255,255,255,.14); box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.featured-img { position: relative; overflow: hidden; min-height: 420px; }
.featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.featured:hover .featured-img img { transform: scale(1.04); }
.featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--ink3)); }
.featured-badge { position: absolute; top: 20px; left: 20px; background: var(--p); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; }
.featured-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 12px; }
.featured-title { font-family: var(--font-heading); font-size: clamp(1.4rem,2vw,1.9rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; color: #fff; margin-bottom: 14px; }
.featured-excerpt { font-size: 14px; color: var(--m2); line-height: 1.7; margin-bottom: 24px; }
.featured-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--m2); }
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--m3); }
.read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-size: 13px; font-weight: 600; color: var(--p); transition: gap .2s; }
.read-more:hover { gap: 10px; }

/* Post grid (blog index) */
.grid-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.grid-head-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--m1); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Post card */
.pc {
  background: var(--ink3); border: 1px solid var(--b); border-radius: 16px;
  overflow: hidden; cursor: pointer; transition: all .35s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.pc:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.14); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.pc-img { aspect-ratio: 16/9; position: relative; overflow: hidden; flex-shrink: 0; }
.pc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.pc:hover .pc-img img { transform: scale(1.06); }
.pc-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.pc-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.pc-tag { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p); margin-bottom: 8px; }
.pc-title { font-size: 15.5px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 9px; flex: 1; }
.pc-excerpt { font-size: 13px; color: var(--m2); line-height: 1.65; margin-bottom: 16px; }
.pc-meta { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--m2); margin-top: auto; }

/* 15. Single Blog Post
─────────────────────────────────────────────────────────── */
.post-header { max-width: 760px; margin: 0 auto; padding: 100px 40px 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: var(--m2); margin-bottom: 28px; transition: color .2s; }
.back-link:hover { color: #fff; }
.post-tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.post-tag::before { content: ''; width: 14px; height: 1.5px; background: var(--p); }
.post-title { font-family: var(--font-heading); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--m2); }
.post-meta-author { display: flex; align-items: center; gap: 8px; }
.author-dot { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#7C5CFC,#4A2FCC); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.post-hero { max-width: 760px; margin: 32px auto 0; padding: 0 40px; }
.post-hero-img { width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; border: 1px solid var(--b); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.post-layout { max-width: 1100px; margin: 48px auto 0; padding: 0 40px 100px; display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }

/* Prose */
.prose { font-size: 17px; line-height: 1.85; color: var(--m1); }
.prose h2 { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; letter-spacing: -.02em; color: #fff; margin: 48px 0 16px; line-height: 1.2; }
.prose h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: #fff; margin: 36px 0 12px; }
.prose p { margin-bottom: 24px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: #fff; font-weight: 600; }
.prose em { color: rgba(255,255,255,.8); }
.prose a { color: var(--p); border-bottom: 1px solid rgba(124,92,252,.3); transition: border-color .2s; }
.prose a:hover { border-color: var(--p); }
.prose blockquote { border-left: 3px solid var(--p); padding: 4px 0 4px 22px; margin: 32px 0; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,.7); line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 24px 20px; }
.prose li { margin-bottom: 8px; }
.prose img { width: 100%; border-radius: 14px; margin: 32px 0; border: 1px solid var(--b); }
.prose hr { border: none; border-top: 1px solid var(--b); margin: 44px 0; }

/* Asset CTA inline */
.asset-cta { background: var(--ink3); border: 1px solid var(--b); border-radius: 14px; padding: 22px 24px; margin: 36px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.asset-cta-text { font-size: 13.5px; color: var(--m1); }
.asset-cta-text strong { color: #fff; display: block; font-size: 14.5px; margin-bottom: 3px; }
.asset-cta-btn { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; background: linear-gradient(135deg,#7C5CFC,#5235E0); color: #fff; font-size: 12.5px; font-weight: 600; padding: 10px 18px; border-radius: 9px; box-shadow: 0 0 16px rgba(124,92,252,.3); transition: all .2s; white-space: nowrap; }
.asset-cta-btn:hover { box-shadow: 0 0 28px rgba(124,92,252,.5); transform: translateY(-1px); }

/* Post tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--b); }
.ptag { font-size: 11.5px; font-weight: 500; color: var(--m2); background: var(--ink3); border: 1px solid var(--b); border-radius: 20px; padding: 5px 13px; transition: all .2s; cursor: pointer; }
.ptag:hover { color: #fff; border-color: rgba(255,255,255,.2); }

/* Sidebar */
.sidebar-sticky { position: sticky; top: 88px; }
.sidebar-block { background: var(--ink3); border: 1px solid var(--b); border-radius: 14px; padding: 22px; margin-bottom: 16px; }
.sidebar-label { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 16px; }
.sidebar-asset { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--b); cursor: pointer; transition: opacity .2s; text-decoration: none; color: inherit; }
.sidebar-asset:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-asset:hover { opacity: .75; }
.sidebar-asset-img { width: 48px; height: 60px; border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.sidebar-asset-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.sidebar-asset-name { font-size: 12.5px; font-weight: 600; color: #fff; margin-bottom: 3px; line-height: 1.3; }
.sidebar-asset-cat { font-size: 10.5px; color: var(--m2); }
.sidebar-dl { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 10.5px; font-weight: 600; color: var(--p); }
.sidebar-related-post { padding: 10px 0; border-bottom: 1px solid var(--b); cursor: pointer; display: block; text-decoration: none; color: inherit; }
.sidebar-related-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related-tag { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p); margin-bottom: 4px; }
.sidebar-related-title { font-size: 12.5px; font-weight: 600; color: #fff; line-height: 1.4; transition: color .2s; }
.sidebar-related-post:hover .sidebar-related-title { color: var(--p); }
.sidebar-related-meta { font-size: 11px; color: var(--m2); margin-top: 4px; }

/* Related posts bottom */
.related { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.related-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; color: #fff; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rc { background: var(--ink3); border: 1px solid var(--b); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all .3s cubic-bezier(.16,1,.3,1); display: block; text-decoration: none; color: inherit; }
.rc:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.12); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.rc-img { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.rc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.rc:hover .rc-img img { transform: scale(1.05); }
.rc-body { padding: 16px 18px 18px; }
.rc-tag { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p); margin-bottom: 6px; }
.rc-title { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 6px; }
.rc-meta { font-size: 11px; color: var(--m2); }

/* 16. About Page
─────────────────────────────────────────────────────────── */
.about-page-header { padding: 140px 40px 80px; text-align: center; position: relative; overflow: hidden; background: var(--ink); }
.about-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--p); display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.about-eyebrow::before, .about-eyebrow::after { content: ''; width: 18px; height: 1.5px; background: var(--p); }
.about-page-title { font-family: var(--font-heading); font-size: clamp(3rem,7vw,5.5rem); font-weight: 700; letter-spacing: -.04em; line-height: .98; margin-bottom: 24px; }
.about-page-title em { font-style: normal; background: linear-gradient(90deg,#A38BFF,#7C5CFC,#C4B5FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-sub { font-size: 1.05rem; color: var(--m1); line-height: 1.75; max-width: 520px; margin: 0 auto; }
.content { max-width: 780px; margin: 0 auto; padding: 80px 40px 120px; }
.block { margin-bottom: 72px; }
.block-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--p); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.block-eyebrow::before { content: ''; width: 14px; height: 1.5px; background: var(--p); }
.block-title { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; color: #fff; margin-bottom: 18px; }
.block-body { font-size: 15.5px; color: var(--m1); line-height: 1.85; }
.block-body p { margin-bottom: 16px; }
.block-body p:last-child { margin-bottom: 0; }
.block-body strong { color: #fff; font-weight: 600; }
.divider { border: none; border-top: 1px solid var(--b); margin: 0; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.card { background: var(--ink3); border: 1px solid var(--b); border-radius: 16px; padding: 28px 26px; transition: border-color .25s; }
.card:hover { border-color: rgba(124,92,252,.3); }
.card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.card-body { font-size: 13.5px; color: var(--m2); line-height: 1.7; }
.email-box { margin-top: 48px; background: var(--ink3); border: 1px solid var(--b); border-radius: 16px; padding: 32px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.email-box-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--p); margin-bottom: 6px; }
.email-box-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.email-box-note { font-size: 13px; color: var(--m2); }
.email-link { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,#7C5CFC,#5235E0); color: #fff; font-size: 13.5px; font-weight: 600; padding: 12px 22px; border-radius: 10px; box-shadow: 0 0 20px var(--p-glow); transition: all .25s; white-space: nowrap; }
.email-link:hover { box-shadow: 0 0 36px var(--p-glow); transform: translateY(-1px); }

/* Search page results */
.search-results-header { padding: 100px 40px 40px; max-width: 1400px; margin: 0 auto; }
.search-results-title { font-family: var(--font-heading); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; letter-spacing: -.03em; color: #fff; margin-bottom: 8px; }
.search-results-count { font-size: 13px; color: var(--m2); }
.blog-card-search { background: var(--ink3); border: 1px solid var(--b); border-radius: 14px; overflow: hidden; transition: all .3s; display: block; text-decoration: none; color: inherit; }
.blog-card-search:hover { border-color: rgba(255,255,255,.14); box-shadow: 0 16px 48px rgba(0,0,0,.4); transform: translateY(-3px); }
.blog-card-search .bc-img { height: 180px; position: relative; overflow: hidden; }
.blog-card-search .bc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.blog-card-search .bc-body { padding: 18px 20px 20px; }

/* 17. Animations (.fu, .sg)
─────────────────────────────────────────────────────────── */
.fu { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.fu.in { opacity: 1; transform: translateY(0); }
.sg > * { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.sg.in > * { opacity: 1; transform: translateY(0); }
.sg.in > *:nth-child(1) { transition-delay: 0s; }
.sg.in > *:nth-child(2) { transition-delay: .06s; }
.sg.in > *:nth-child(3) { transition-delay: .12s; }
.sg.in > *:nth-child(4) { transition-delay: .18s; }
.sg.in > *:nth-child(5) { transition-delay: .24s; }
.sg.in > *:nth-child(6) { transition-delay: .30s; }
.sg.in > *:nth-child(7) { transition-delay: .36s; }
.sg.in > *:nth-child(8) { transition-delay: .42s; }

/* 18. Utilities
─────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.no-posts { text-align: center; padding: 80px 40px; color: var(--m2); font-size: 15px; }

/* ── Brand Closer ───────────────────────────────────────── */
.brand-closer {
  position: relative; overflow: hidden;
  background: var(--ink); border-top: 1px solid var(--b);
  padding: 120px 40px 130px; text-align: center;
}
.brand-closer-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,92,252,.07), transparent 70%);
}
.brand-closer-inner { position: relative; z-index: 1; }
.brand-closer-label {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--m2); margin-bottom: 36px;
}
.brand-closer-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 11rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: #fff; margin-bottom: 28px; min-height: 1.1em;
}
.brand-closer-name em {
  font-style: normal;
  background: linear-gradient(90deg, #A38BFF 0%, #7C5CFC 45%, #C4B5FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bc-cursor {
  display: inline-block; font-weight: 200;
  color: var(--p); -webkit-text-fill-color: var(--p);
  animation: bccursor .75s step-end infinite;
}
@keyframes bccursor { 0%,100% { opacity:1; } 50% { opacity:0; } }
.brand-closer-sub { font-size: 1rem; color: var(--m2); max-width: 380px; margin: 0 auto; line-height: 1.7; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(5,1fr); }
  .asset-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 1000px) {
  .featured { grid-template-columns: 1fr; }
  .featured-img { min-height: 280px; }
  .featured-img-overlay { display: none; }
  .post-layout { grid-template-columns: 1fr; gap: 48px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-cats { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 64px 20px; }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .asset-grid { grid-template-columns: repeat(3,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2,1fr); }
  .page-header { padding: 80px 20px 0; }
  .page-header--blog { padding: 110px 24px 48px; }
  .cat-filter { padding: 0 24px; }
  .main { padding: 24px 20px 80px; }
  .filter-bar { padding: 14px 20px; }
  .post-header { padding: 90px 24px 0; }
  .post-hero { padding: 0 24px; }
  .post-layout { padding: 0 24px 80px; margin-top: 36px; }
  .related { padding: 0 24px 60px; }
  .about-page-header { padding: 120px 24px 60px; }
  .content { padding: 60px 24px 80px; }
  .email-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .asset-grid { grid-template-columns: repeat(2,1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .asset-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Asset Single Page ───────────────────────────────────── */
.asset-single { max-width: 1200px; margin: 0 auto; padding: 48px 40px 80px; }
.asset-single-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--m2); margin-bottom: 36px; flex-wrap: wrap; }
.asset-single-breadcrumb a { color: var(--m1); }
.asset-single-breadcrumb a:hover { color: #fff; }
.asset-single-breadcrumb span { color: var(--m2); }
.asset-single-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.asset-single-media { position: sticky; top: 100px; }
.asset-single-img-wrap { position: relative; border-radius: 16px; overflow: hidden; background: var(--ink3); border: 1px solid var(--b); margin-bottom: 20px; }
.asset-single-checker { position: absolute; inset: 0; z-index: 0; }
.asset-single-img { position: relative; z-index: 1; width: 100%; height: auto; max-height: 560px; object-fit: contain; }
.asset-single-dl-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; background: var(--p); color: #fff; font-family: var(--font-heading); font-size: 16px; font-weight: 700; border-radius: 12px; transition: background .2s; }
.asset-single-dl-btn:hover { background: var(--p2); }
.asset-single-dl-btn--soon { background: var(--ink4); color: var(--m2); cursor: default; }
.asset-single-note { text-align: center; font-size: 12px; color: var(--m2); margin-top: 12px; }
.asset-single-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--p); margin-bottom: 12px; }
.asset-single-title { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 20px; }
.asset-single-desc { font-size: 15px; color: var(--m1); line-height: 1.7; margin-bottom: 24px; }
.asset-single-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.asset-single-details { background: var(--ink3); border: 1px solid var(--b); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.asd-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.asd-row span { color: var(--m2); }
.asd-row strong { color: var(--m1); }
.asset-single-related { margin-top: 64px; }
@media (max-width: 900px) {
  .asset-single-inner { grid-template-columns: 1fr; }
  .asset-single-media { position: static; }
}
@media (max-width: 600px) {
  .asset-single { padding: 32px 20px 60px; }
}
