/* =========================================================
   TAORE LEVANYA — BLOG SYSTEM STYLESHEET
   Self-contained. No dependency on the rest of the site's CSS.
   ========================================================= */

:root{
  --teal-dark:#0a2a28;
  --teal-mid:#0f3d3a;
  --teal-light:#156a63;
  --green:#2ecc71;
  --green-dark:#27ae60;

  --ink:#132322;
  --slate:#586866;
  --cream:#F8F6F0;
  --paper:#FFFFFF;
  --mist:#EFF3F1;
  --line:rgba(10,42,40,0.10);

  /* Category colors — exactly as specified */
  --cat-technology:#3498db;
  --cat-communication:#9b59b6;
  --cat-growth:#e67e22;
  --cat-productivity:#1abc9c;
  --cat-branding:#e74c3c;

  --font-head:"Space Grotesk","Inter",sans-serif;
  --font-body:"Inter","Segoe UI",sans-serif;

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --shadow-card:0 2px 4px rgba(10,42,40,0.06), 0 14px 28px -14px rgba(10,42,40,0.18);
  --shadow-soft:0 10px 30px -14px rgba(10,42,40,0.25);
  --ease:cubic-bezier(.22,.9,.32,1);
}

:root {
  /* Brand core — pulled from logomark: teal circuitry + lime speech bubble */
  --teal-900: #0B3B38;
  --teal-800: #0E4B47;
  --teal-700: #125C56;
  --teal-600: #177067;
  --teal-500: #1D8A7C;
  --lime-600: #8FA916;
  --lime-500: #AECC1E;
  --lime-400: #C4DB3E;

  --ink: #132322;
  --slate: #4A5D5A;
  --cream: #F8F6F0;
  --paper: #FFFFFF;
  --mist: #EFF3F1;
  --line: rgba(19, 35, 34, 0.10);

  --font-head: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 30px -14px rgba(11, 59, 56, 0.25);
  --shadow-card: 0 2px 4px rgba(11, 59, 56, 0.06), 0 12px 24px -12px rgba(11, 59, 56, 0.14);
  --ease: cubic-bezier(.22, .9, .32, 1);
}



@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 3px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--lime-500);
  display: inline-block;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

@media (max-width:720px) {
  .section {
    padding: 60px 0;
  }

  .section-tight {
    padding: 44px 0;
  }
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-top: 12px;
}

.section-head p {
  color: var(--slate);
  margin-top: 14px;
  font-size: 16.5px;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.accent {
  color: var(--lime-600);
}

.on-dark .accent {
  color: var(--lime-400);
}



/* ===================== HEADER ===================== */
/* .blog-header{
  position:sticky;top:0;z-index:100;background:#fff;border-bottom:1px solid var(--line);
}
.blog-nav{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;gap:20px;max-width:1180px;margin:0 auto;}
.blog-brand{display:flex;align-items:center;gap:10px;font-family:var(--font-head);font-weight:700;font-size:16px;color:var(--teal-dark);}
.blog-brand .logo-dot{width:34px;height:34px;border-radius:9px;background:var(--teal-dark);color:var(--green);display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:700;flex-shrink:0;}
.blog-nav-links{display:flex;align-items:center;gap:26px;}
.blog-nav-links a{font-size:14px;font-weight:600;color:var(--slate);}
.blog-nav-links a:hover,.blog-nav-links a.active{color:var(--teal-dark);}
.blog-nav-links a.btn-cta{background:var(--green);color:#08201e;padding:10px 18px;border-radius:999px;font-weight:700;}
.blog-nav-links a.btn-cta:hover{background:var(--green-dark);color:#fff;}
@media (max-width:720px){.blog-nav-links{gap:14px;} .blog-nav-links a:not(.btn-cta){display:none;}} */


/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--teal-800);
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--lime-600);
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--lime-500);
  transition: width .25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-800);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-cta-group {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--teal-800);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width:960px) {
  .nav-actions>a.btn {
    display: none;
  }

  /* avoid a second "Let's Talk" showing next to the toggle */

  /* Positioned relative to .site-header (its nearest positioned ancestor via position:sticky),
     so it always starts exactly below the header — no magic pixel offsets, no clipping. */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 36px 24px 40px;
    gap: 0;
    box-shadow: 0 30px 50px -22px rgba(11, 59, 56, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 150;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    padding: 16px 0px;
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--teal-700);
  }

  .mobile-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
  }

  .mobile-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 10px
  }

  .nav-toggle {
    display: block;
  }
}










/* ===================== HERO ===================== */
.blog-hero{padding:52px 0 8px;background:linear-gradient(180deg,#fbfaf7 0%, #fff 100%);}
.blog-hero .eyebrow{
  display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;color:var(--teal-light);
}
.blog-hero .eyebrow::before{content:"";width:16px;height:2px;background:var(--green);}
.blog-hero h1{font-size:clamp(28px,4.4vw,42px);margin-top:12px;}
.blog-hero h1 span{color:var(--green-dark);}
.blog-hero p{margin-top:14px;font-size:16px;color:var(--slate);max-width:560px;}

/* ===================== SEARCH + FILTERS ===================== */
.blog-controls{
  display:flex;flex-wrap:wrap;gap:16px;align-items:center;justify-content:space-between;
  margin-top:32px;padding-bottom:28px;border-bottom:1px solid var(--line);
}
.search-box{
  position:relative;flex:1;min-width:220px;max-width:360px;
}
.search-box input{
  width:100%;padding:12px 16px 12px 42px;border-radius:999px;border:1.5px solid var(--line);
  font-family:inherit;font-size:14.5px;background:var(--mist);color:var(--ink);
  transition:border-color .2s var(--ease), background .2s var(--ease);
}
.search-box input:focus{outline:none;border-color:var(--teal-light);background:#fff;}
.search-box svg{position:absolute;left:15px;top:50%;transform:translateY(-50%);width:16px;height:16px;color:var(--slate);}
.filter-pills{display:flex;flex-wrap:wrap;gap:8px;}
.filter-pill{
  padding:9px 16px;border-radius:999px;border:1.5px solid var(--line);background:#fff;
  font-size:13.5px;font-weight:600;color:var(--slate);transition:all .2s var(--ease);
}
.filter-pill:hover{border-color:var(--teal-light);color:var(--teal-dark);}
.filter-pill.active{background:var(--teal-dark);border-color:var(--teal-dark);color:#fff;}
.results-meta{font-size:13px;color:var(--slate);margin-top:18px;}

/* ===================== BLOG GRID / CARDS ===================== */
.blog-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:24px;
}
@media (max-width:960px){.blog-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.blog-grid{grid-template-columns:1fr;}}

.post-card{
  display:block;border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--line);
  background:#fff;transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-card);}
.post-card-thumb{aspect-ratio:16/10;overflow:hidden;position:relative;}
.post-card-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease);}
.post-card:hover .post-card-thumb img{transform:scale(1.06);}
.post-card-body{padding:20px 20px 24px;}
.post-card-title{font-size:17px;margin:12px 0 10px;color:var(--teal-dark);}
.post-card-excerpt{font-size:13.5px;color:var(--slate);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.post-card-meta{font-size:12.5px;color:var(--slate);display:flex;gap:10px;align-items:center;margin-top:14px;}
.post-card-meta span::before{content:"•";margin-right:10px;color:var(--line);}
.post-card-meta span:first-child::before{content:none;}

/* Category badges — shared across cards + post page */
.cat-badge{
  display:inline-flex;align-items:center;gap:6px;padding:5px 12px;border-radius:999px;
  font-size:11px;font-weight:700;letter-spacing:0.04em;text-transform:uppercase;color:#fff;
}
.cat-badge.cat-technology{background:var(--cat-technology);}
.cat-badge.cat-communication{background:var(--cat-communication);}
.cat-badge.cat-growth{background:var(--cat-growth);}
.cat-badge.cat-productivity{background:var(--cat-productivity);}
.cat-badge.cat-branding{background:var(--cat-branding);}

/* Empty / loading states */
.blog-empty, .blog-loading{
  text-align:center;padding:70px 20px;color:var(--slate);
}
.blog-empty svg, .blog-loading svg{width:40px;height:40px;color:var(--line);margin:0 auto 14px;}
.blog-empty h3{color:var(--teal-dark);margin-bottom:8px;}
.blog-empty button{
  margin-top:16px;padding:10px 20px;border-radius:999px;border:none;
  background:var(--teal-dark);color:#fff;font-weight:600;font-size:13.5px;
}

/* ===================== ARTICLE PAGE ===================== */
.article-hero{padding:40px 0 0;}
.article-back{
  display:inline-flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;
  color:var(--slate);margin-bottom:22px;
}
.article-back svg{width:15px;height:15px;}
.article-back:hover{color:var(--teal-dark);}
.article-header{max-width:760px;}
.article-header h1{font-size:clamp(28px,4.6vw,44px);margin:16px 0 20px;}
.article-meta-row{display:flex;flex-wrap:wrap;align-items:center;gap:16px;color:var(--slate);font-size:14px;}
.article-meta-row .author-chip{display:flex;align-items:center;gap:8px;font-weight:600;color:var(--ink);}
.author-avatar{width:30px;height:30px;border-radius:50%;background:var(--teal-dark);color:var(--green);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0;}
.article-meta-row span::before{content:"•";margin-right:16px;color:var(--line);}
.article-meta-row span:first-child::before, .article-meta-row .author-chip::before{content:none;}

.article-featured-img{
  margin-top:32px;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:16/8;
  box-shadow:var(--shadow-soft);
}
.article-featured-img img{width:100%;height:100%;object-fit:cover;display:block;}

.article-layout{
  display:grid;grid-template-columns:64px 1fr;gap:32px;margin-top:44px;align-items:start;
}
@media (max-width:800px){.article-layout{grid-template-columns:1fr;}}

.share-rail{
  position:sticky;top:100px;display:flex;flex-direction:column;gap:10px;align-items:center;
}
.share-rail-label{font-size:10.5px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--slate);writing-mode:vertical-rl;margin-bottom:6px;}
@media (max-width:800px){
  .share-rail{position:static;flex-direction:row;justify-content:flex-start;margin-bottom:8px;}
  .share-rail-label{writing-mode:horizontal-tb;margin-bottom:0;margin-right:4px;}
}
.share-btn{
  width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--mist);color:var(--teal-dark);transition:all .2s var(--ease);flex-shrink:0;
}
.share-btn svg{width:18px;height:18px;}
.share-btn:hover{background:var(--teal-dark);color:#fff;transform:translateY(-2px);}
.share-btn.copied{background:var(--green);color:#08201e;}

.article-body{max-width:720px;}
.article-body p{margin-bottom:20px;font-size:16.5px;color:#26332f;}
.article-body h2{font-size:23px;margin:36px 0 14px;color:var(--teal-dark);}
.article-body ul{margin:0 0 20px;padding-left:0;}
.article-body li{
  list-style:none;position:relative;padding-left:26px;margin-bottom:12px;font-size:16px;color:#26332f;
}
.article-body li::before{
  content:"";position:absolute;left:0;top:9px;width:9px;height:9px;border-radius:50%;background:var(--green);
}
.article-body strong{color:var(--teal-dark);}
.article-body em{color:var(--teal-light);font-style:italic;}

/* Author bio card */
.author-card{
  max-width:720px;margin:52px 0 0 auto;background:var(--mist);border-radius:var(--radius-md);
  padding:26px;display:flex;gap:18px;align-items:flex-start;
}
@media (max-width:800px){.author-card{margin-left:0;}}
.author-card .author-avatar{width:52px;height:52px;font-size:18px;flex-shrink:0;}
.author-card h4{font-size:15px;margin-bottom:4px;}
.author-card p{font-size:14px;color:var(--slate);}

/* Related posts */
.related-section{margin-top:70px;}
.related-section h3{font-size:22px;margin-bottom:24px;}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
@media (max-width:800px){.related-grid{grid-template-columns:1fr;}}

/* Not-found state on article page */
.article-not-found{text-align:center;padding:100px 20px;}
.article-not-found h2{font-size:24px;margin-bottom:10px;}
.article-not-found p{color:var(--slate);margin-bottom:22px;}
.article-not-found a{
  display:inline-flex;padding:12px 22px;border-radius:999px;background:var(--teal-dark);color:#fff;font-weight:600;font-size:14px;
}

/* ===================== FOOTER ===================== */
/* .blog-footer{background:var(--teal-dark);color:rgba(255,255,255,0.75);padding:40px 0;margin-top:80px;}
.blog-footer .wrap{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;}
.blog-footer a{color:rgba(255,255,255,0.75);}
.blog-footer a:hover{color:var(--green);}
.blog-footer .footer-brand{display:flex;align-items:center;gap:10px;color:#fff;font-family:var(--font-head);font-weight:700;font-size:14.5px;} */

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}

.footer-social a:hover {
  background: var(--lime-500);
  color: var(--teal-900);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.site-footer h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  transition: color .2s var(--ease);
}

.footer-links a:hover {
  color: var(--lime-400);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lime-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal-on-scroll (optional light polish) */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .5s var(--ease), transform .5s var(--ease);}
.reveal.in{opacity:1;transform:translateY(0);}
