/* ============================================================
   COYOTE LABS — Global Stylesheet
   coyotelabshq.com
   ============================================================ */

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

:root {
  --bg:        #0d0d12;
  --bg2:       #111118;
  --bg3:       #0a0a0f;
  --txt:       #ffffff;
  --txt2:      #e8e4d8;
  --txt3:      #c4c0b4;
  --txt4:      #9e9a8e;
  --accent:    #e8a030;
  --accent-bg: rgba(232, 160, 48, 0.13);
  --border:    rgba(255, 255, 255, 0.09);
  --border-a:  rgba(232, 160, 48, 0.35);
  --radius:    12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 62px;
  background: rgba(13,13,18,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name { font-size: 15px; font-weight: 600; letter-spacing: .02em; color: var(--txt); line-height: 1.2; }
.nav-logo-tag  { font-size: 10px; font-weight: 400; letter-spacing: .04em; color: var(--txt); line-height: 1.2; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--txt3); transition: color .18s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #1a1006;
  font-size: 13px; font-weight: 600; border: none;
  border-radius: 7px; padding: 9px 18px; cursor: pointer;
  text-decoration: none; display: inline-block; transition: opacity .18s;
}
.nav-cta:hover { opacity: .85; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: #1a1006;
  font-size: 14px; font-weight: 600; border: none;
  border-radius: 9px; padding: 13px 26px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: opacity .18s, transform .15s;
}
.btn-primary:hover { opacity: .87; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--txt);
  font-size: 14px; font-weight: 500;
  border: 0.5px solid rgba(255,255,255,.22); border-radius: 9px;
  padding: 13px 26px; cursor: pointer; text-decoration: none;
  display: inline-block; transition: border-color .18s, transform .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 96px 48px 84px; text-align: center;
  border-bottom: 0.5px solid var(--border);
  position: relative; overflow: hidden; background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 420px;
  background: radial-gradient(ellipse, rgba(232,160,48,.07) 0%, transparent 68%);
  pointer-events: none;
}
.eyebrow { font-size: 11px; letter-spacing: .13em; color: var(--accent); text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: 52px; font-weight: 600; color: var(--txt); line-height: 1.12; letter-spacing: -.025em; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 17px; color: var(--txt3); max-width: 520px; margin: 0 auto 38px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 72px 48px; }
.section-alt { background: var(--bg2); }
.section-border { border-top: 0.5px solid var(--border); }
.section-label { font-size: 11px; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
.section h2 { font-size: 32px; font-weight: 600; color: var(--txt); letter-spacing: -.02em; margin-bottom: 10px; }
.section-intro { font-size: 15px; color: var(--txt3); max-width: 600px; line-height: 1.75; margin-bottom: 48px; }

/* ── BADGES ── */
.badge { font-size: 10px; font-weight: 600; letter-spacing: .1em; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.badge-live {
  background: rgba(128,194,74,.1);
  color: #80c24a;
  border: 0.5px solid rgba(128,194,74,.25);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 5px 14px;
  text-transform: none;
}
.badge-soon { background: rgba(255,255,255,.06); color: var(--txt4); }

/* live pulse dot inside badges */
.live-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #80c24a; flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* ── PRODUCT CARDS (products.html) ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; max-width: 1100px; }
.p-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 30px; position: relative; transition: transform .2s, border-color .2s; }
.p-card:hover { transform: translateY(-3px); }
.p-card.live { border-color: var(--border-a); }
.p-card.dim  { opacity: .8; }
.p-card .p-badge { position: absolute; top: 20px; right: 20px; }
.p-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.p-icon svg { width: 22px; height: 22px; }
.icon-wisdom { background: rgba(232,160,48,.14); }
.icon-body   { background: rgba(99,153,34,.14); }
.icon-store  { background: rgba(83,74,183,.14); }
.icon-app2   { background: rgba(212,83,126,.14); }
.p-type { font-size: 11px; color: var(--txt4); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 6px; }
.p-card h3 { font-size: 19px; font-weight: 600; color: var(--txt); margin-bottom: 10px; }
.p-card > p { font-size: 14px; color: var(--txt3); line-height: 1.72; margin-bottom: 22px; }
.features-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-bottom: 22px; }
.features-col h4 { font-size: 11px; letter-spacing: .09em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
.features-col li { font-size: 13px; color: var(--txt3); padding: 3px 0; display: flex; align-items: center; gap: 7px; }
.features-col li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.p-link { font-size: 13px; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; transition: gap .18s; }
.p-link:hover { gap: 8px; }
.p-link-muted { font-size: 13px; color: var(--txt4); display: inline-flex; align-items: center; gap: 5px; }
.product-note { margin-top: 32px; padding: 24px; background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius); }
.product-note p { font-size: 14px; color: var(--txt3); line-height: 1.75; }

/* ── HOME PRODUCT CARDS (index.html) ── */
.home-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; }
.hp-card { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .2s, transform .2s; cursor: pointer; display: block; }
.hp-card:hover { border-color: var(--border-a); transform: translateY(-2px); }
.hp-card.live { border-color: var(--border-a); }
.hp-card.dim  { opacity: .8; }
.hp-icon { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.hp-icon svg { width: 20px; height: 20px; }
.hp-type { font-size: 11px; color: var(--txt4); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.hp-card h3 { font-size: 16px; font-weight: 600; color: var(--txt); margin-bottom: 8px; }
.hp-card p  { font-size: 13px; color: var(--txt3); line-height: 1.65; }
.hp-badge { display: inline-block; margin-top: 14px; }

/* ── HOME ABOUT STRIP ── */
.home-about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.home-about-text h2 { font-size: 30px; font-weight: 600; color: var(--txt); letter-spacing: -.02em; margin-bottom: 14px; }
.home-about-text p  { font-size: 15px; color: var(--txt3); line-height: 1.8; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-sm); padding: 18px; }
.stat-num { font-size: 28px; font-weight: 600; color: var(--accent); letter-spacing: -.02em; }
.stat-lbl { font-size: 12px; color: var(--txt3); margin-top: 3px; }

/* ── ABOUT PAGE ── */
.about-beliefs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-bottom: 52px; }
.belief-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 22px; }
.belief-num { font-size: 28px; font-weight: 600; color: var(--accent); letter-spacing: -.02em; margin-bottom: 8px; }
.belief-card p { font-size: 14px; color: var(--txt3); line-height: 1.65; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col h3 { font-size: 22px; font-weight: 600; color: var(--txt); margin-bottom: 14px; letter-spacing: -.01em; }
.two-col p  { font-size: 14px; color: var(--txt3); line-height: 1.8; margin-bottom: 12px; }
.trait-list { margin-top: 16px; }
.trait-list li { font-size: 14px; color: var(--txt3); padding: 8px 0; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 10px; }
.trait-list li:last-child { border-bottom: none; }
.trait-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.company-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.info-card { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.info-label { font-size: 11px; letter-spacing: .09em; color: var(--txt4); text-transform: uppercase; margin-bottom: 8px; }
.info-value { font-size: 14px; color: var(--txt2); }
.info-value a { color: var(--accent); }

/* ── BLOG PAGE ── */
.blog-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; margin-bottom: 60px; }
.cat-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 26px; transition: border-color .2s, transform .2s; cursor: pointer; }
.cat-card:hover { border-color: var(--border-a); transform: translateY(-2px); }
.cat-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cat-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cat-card h3 { font-size: 15px; font-weight: 600; color: var(--txt); margin-bottom: 6px; }
.cat-card p  { font-size: 13px; color: var(--txt3); line-height: 1.65; }
.articles-list { display: flex; flex-direction: column; }
.article-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 0.5px solid var(--border); cursor: pointer; gap: 20px; }
.article-row:first-child { border-top: 0.5px solid var(--border); }
.article-row:hover .article-title { color: var(--accent); }
.article-meta { display: flex; flex-direction: column; gap: 4px; }
.article-title { font-size: 15px; font-weight: 500; color: var(--txt); transition: color .18s; }
.article-tag { font-size: 11px; color: var(--txt4); letter-spacing: .07em; text-transform: uppercase; }
.article-arrow { color: var(--txt4); flex-shrink: 0; font-size: 18px; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 20px; font-weight: 600; color: var(--txt); margin-bottom: 14px; }
.contact-info p  { font-size: 14px; color: var(--txt3); line-height: 1.8; margin-bottom: 28px; }
.contact-detail { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.c-detail-item { display: flex; align-items: center; gap: 12px; background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.c-detail-icon { width: 32px; height: 32px; background: var(--accent-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-detail-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.c-detail-label { font-size: 11px; color: var(--txt4); text-transform: uppercase; letter-spacing: .08em; }
.c-detail-value { font-size: 13px; color: var(--txt2); }
.c-detail-value a { color: var(--accent); }
.response-note { font-size: 13px; color: var(--txt3); background: var(--accent-bg); border: 0.5px solid var(--border-a); border-radius: var(--radius-sm); padding: 12px 16px; }
.contact-form { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { font-size: 18px; font-weight: 600; color: var(--txt); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 12px; color: var(--txt3); letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 0.5px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; color: var(--txt); font-family: inherit; outline: none; width: 100%; transition: border-color .18s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a22; }
.form-submit { width: 100%; background: var(--accent); color: #1a1006; font-size: 14px; font-weight: 600; border: none; border-radius: 9px; padding: 14px; cursor: pointer; margin-top: 4px; transition: opacity .18s; font-family: inherit; }
.form-submit:hover { opacity: .87; }

/* ── FOOTER ── */
footer { background: var(--bg3); border-top: 0.5px solid var(--border); padding: 30px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-left  { font-size: 12px; color: var(--txt4); }
.footer-left a { color: var(--accent); }
.footer-right { font-size: 12px; color: var(--txt); font-style: normal; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 52px 24px; }
  .two-col, .home-about, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .features-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 24px 20px; flex-direction: column; text-align: center; }
}

/* ── IN PROGRESS BADGE ── */
.badge-progress { background: rgba(100,180,255,.12); color: #64b4ff; }

/* ── PRODUCT CARD — IN PROGRESS STATE ── */
.p-card.progress { border-color: rgba(100,180,255,.3); }
.hp-card.progress { border-color: rgba(100,180,255,.3); }

/* ── PILLAR ICONS ── */
.icon-den { background: rgba(232,160,48,.14); }
.pillar-icon-faith { background: rgba(192,160,96,.14); }
.pillar-icon-health { background: rgba(99,153,34,.14); }
.pillar-icon-mind { background: rgba(139,132,224,.14); }

/* ── PILLAR LAYOUT (products.html) ── */
.pillar { margin-bottom: 56px; }
.pillar:last-child { margin-bottom: 0; }
.pillar-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--border);
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-label { font-size: 11px; letter-spacing: .1em; color: var(--txt4); text-transform: uppercase; margin-bottom: 3px; }
.pillar-name { font-size: 22px; font-weight: 600; color: var(--txt); letter-spacing: -.01em; }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; }

/* ── PRODUCT TAB BAR ── */
.prod-tab-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 16px 48px;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  position: sticky; top: 62px; z-index: 100;
  overflow-x: auto;
}
.prod-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 500; font-family: inherit;
  color: var(--txt3); background: transparent;
  border: 0.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: color .18s, background .18s, border-color .18s;
}
.prod-tab svg { width: 14px; height: 14px; }
.prod-tab:hover { color: var(--txt); background: rgba(255,255,255,.05); }
.prod-tab.active {
  color: var(--accent);
  background: var(--accent-bg);
  border-color: var(--border-a);
}
@media (max-width: 768px) {
  .prod-tab-bar { padding: 12px 20px; }
}

/* ── ABOUT PAGE — INNER CONTENT CENTERING ── */
.about-inner { max-width: 1100px; margin: 0 auto; }

/* ── ABOUT PAGE — PRINCIPLES ── */
.principles-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.principle-row {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0 20px; padding: 28px 24px 28px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}
.principle-row:nth-child(odd)  { border-right: 0.5px solid var(--border); padding-right: 32px; }
.principle-row:nth-child(even) { padding-left: 32px; }
.principle-row:nth-child(1),
.principle-row:nth-child(2) { border-top: 0.5px solid var(--border); }
/* last row spans full width if odd count */
.principle-row:last-child:nth-child(odd) {
  grid-column: span 2;
  border-right: none;
  padding-right: 0;
  max-width: 560px;
}
.principle-num {
  font-size: 24px; font-weight: 600; color: var(--accent);
  letter-spacing: -.02em; padding-top: 2px;
}
.principle-body h3 { font-size: 16px; font-weight: 600; color: var(--txt); margin-bottom: 7px; }
.principle-body p  { font-size: 14px; color: var(--txt3); line-height: 1.75; }

/* ── ABOUT PAGE — PHILOSOPHY / COYOTE ── */
.philosophy-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; margin-top: 36px; }
.philosophy-body p { font-size: 15px; color: var(--txt3); line-height: 1.85; margin-bottom: 14px; }
.philosophy-lead { font-size: 20px !important; font-weight: 500; color: var(--txt) !important; line-height: 1.4 !important; margin-bottom: 22px !important; }
.foundations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.foundation-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-sm); padding: 18px; }
.foundation-label { font-size: 11px; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; margin-bottom: 7px; }
.foundation-card p { font-size: 13px; color: var(--txt3); line-height: 1.7; }

/* ── ABOUT PAGE — STORY ── */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.story-body p { font-size: 15px; color: var(--txt3); line-height: 1.85; margin-bottom: 18px; }
.story-pillars {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  margin: 24px 0; padding: 20px 24px;
  background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-sm);
}
.story-pillars span { font-size: 15px; font-weight: 500; color: var(--txt); }
.story-credits { margin: 4px 0 18px; padding-left: 18px; border-left: 2px solid var(--border-a); }
.story-credits p { font-size: 14px; color: var(--txt3); line-height: 1.8; margin-bottom: 2px; }
.story-closing { font-size: 16px; color: var(--txt2) !important; margin-top: 24px !important; }
.story-closing em { font-style: normal; color: var(--accent); }
.story-aside { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.story-aside-card { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.story-aside-card .foundation-label { margin-bottom: 6px; }
.story-aside-card p { font-size: 13px; color: var(--txt3); line-height: 1.7; }

/* ── ABOUT PAGE — MISSION ── */
.mission-layout { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.mission-body p { font-size: 15px; color: var(--txt3); line-height: 1.85; margin-bottom: 16px; }
.mission-statements { margin: 24px 0; padding: 24px; background: var(--bg); border: 0.5px solid var(--border-a); border-radius: var(--radius-sm); }
.mission-statements p { font-size: 16px; font-weight: 500; color: var(--txt); margin-bottom: 8px; line-height: 1.5; }
.mission-statements p:last-child { margin-bottom: 0; }
.mission-sig { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.mission-sig-logo { width: 52px; height: 52px; }
.mission-sig-name { font-size: 16px; font-weight: 600; color: var(--txt); letter-spacing: -.01em; margin-bottom: 4px; }
.mission-sig-tag { font-size: 12px; color: var(--txt); }

@media (max-width: 768px) {
  .principles-list { grid-template-columns: 1fr; }
  .principle-row { padding: 22px 0 !important; border-right: none !important; padding-left: 0 !important; }
  .principle-row:last-child:nth-child(odd) { max-width: 100%; }
  .philosophy-layout { grid-template-columns: 1fr; gap: 32px; }
  .foundations-grid { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; gap: 32px; }
  .mission-layout { grid-template-columns: 1fr; gap: 32px; }
  .mission-sig { white-space: normal; }
}

/* ── FEATURED APP BANNER ── */
.featured-banner {
  background: rgba(232,160,48,.08);
  border-bottom: 0.5px solid var(--border-a);
  padding: 0 48px;
}
.featured-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto;
  height: 52px; gap: 16px;
}
.featured-banner-left {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; overflow: hidden;
}
.featured-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #80c24a;
  box-shadow: 0 0 6px rgba(128,194,74,.7);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(128,194,74,.7); }
  50%       { opacity: .7; box-shadow: 0 0 12px rgba(128,194,74,.5); }
}
.featured-label  { font-size: 12px; font-weight: 600; color: #80c24a; letter-spacing: .05em; text-transform: uppercase; }
.featured-divider { color: var(--txt4); font-size: 12px; }
.featured-name   { font-size: 14px; font-weight: 600; color: var(--txt); }
.featured-version { font-size: 11px; color: var(--txt4); background: rgba(255,255,255,.07); border-radius: 4px; padding: 2px 7px; }
.featured-desc   { font-size: 12px; color: var(--txt3); }
.featured-btn {
  background: var(--accent); color: #1a1006;
  font-size: 12px; font-weight: 600;
  border-radius: 7px; padding: 8px 16px;
  white-space: nowrap; flex-shrink: 0;
  transition: opacity .18s;
}
.featured-btn:hover { opacity: .85; }

@media (max-width: 768px) {
  .featured-banner { padding: 0 20px; }
  .featured-desc { display: none; }
  .featured-banner-inner { height: 48px; }
}

/* ── BLOG — FEATURED ARTICLE CARD ── */
.featured-article-card {
  display: block;
  background: var(--bg2); border: 0.5px solid var(--border-a);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.featured-article-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.featured-article-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.featured-article-title { font-size: 24px; font-weight: 600; color: var(--txt); letter-spacing: -.01em; margin-bottom: 12px; }
.featured-article-excerpt { font-size: 15px; color: var(--txt3); line-height: 1.8; max-width: 700px; }
.featured-article-arrow { font-size: 28px; color: var(--accent); flex-shrink: 0; padding-top: 4px; }
.art-tag {
  display: inline-block; font-size: 11px; color: var(--txt3);
  background: rgba(255,255,255,.06); border: 0.5px solid var(--border);
  border-radius: 20px; padding: 3px 10px; margin: 3px 3px 0 0;
}
.article-tags { margin-top: 12px; }

/* ── ARTICLE PAGE ── */
.article-back {
  display: inline-block; font-size: 13px; color: var(--txt3);
  margin-bottom: 24px; transition: color .18s;
}
.article-back:hover { color: var(--accent); }
.article-meta-top { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 8px; }
.article-read-time { font-size: 12px; color: var(--txt4); }
.article-byline { font-size: 13px; color: var(--txt4); margin-top: 12px; }
.article-body {
  max-width: 720px; margin: 0 auto;
}
.article-body p { font-size: 16px; color: var(--txt3); line-height: 1.9; margin-bottom: 20px; }
.article-body h2 { font-size: 22px; font-weight: 600; color: var(--txt); letter-spacing: -.01em; margin: 44px 0 16px; }
.article-lead {
  font-size: 20px !important; font-weight: 500;
  color: var(--txt) !important; line-height: 1.6 !important;
  margin-bottom: 28px !important;
}
.article-list {
  border-left: 2px solid var(--border-a);
  padding-left: 20px; margin: 4px 0 20px;
}
.article-list p { margin-bottom: 6px !important; font-size: 15px !important; }
.article-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px; margin: 32px 0;
  background: var(--accent-bg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 17px; font-weight: 500; color: var(--txt); line-height: 1.7;
}
.article-footer-card {
  margin-top: 56px; padding: 28px 32px;
  background: var(--bg); border: 0.5px solid var(--border-a);
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .featured-article-arrow { display: none; }
  .featured-article-title { font-size: 20px; }
}

/* clickable article rows */
a.article-row-link {
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
a.article-row-link:hover {
  border-color: var(--border-a);
  background: rgba(232,160,48,.04);
}
a.article-row-link:hover .article-arrow { color: var(--accent); }
a.article-row-link .article-title { color: var(--txt); }
