:root {
  --color-bg: #eeede9;
  --color-dark: #0a1628;
  --color-primary: #155577;
  --color-orange: #a75400;
  --font-mono: 'Satoshi';
  --nav-height: 100px;
}

:root {
  --color-red: #ef493f;
  --color-green: #295b48;
  --color-cyan: #00b8d9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-mono);
  background: var(--color-bg);
  color: var(--color-dark);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.first-screen {
  height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #ffffff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 18px 56px;
  background: #fff;
  border-bottom: 2px solid rgba(10, 22, 40, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-brand { flex-shrink: 0; }
.site-brand img { height: 36px; width: auto; display: block; }
.site-links ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-links a, .site-cta { font-weight: 900; letter-spacing: 0.08em; text-decoration: none; font-size: 0.8rem; white-space: nowrap; }
.site-cta { border: 1.5px solid var(--color-dark); padding: 10px 20px; }

/* Hamburger button — hidden on desktop */
.nav-toggle { display: none; }

/* Mobile CTA inside dropdown — hidden on desktop */
.site-cta-mobile { display: none; }

/* Desktop CTA */
.site-cta-desktop { display: inline-block; flex-shrink: 0; }

/* ── Tablet & mobile nav (iPad + narrow laptop — hamburger) ── */
@media (max-width: 1200px) {
  :root {
    --nav-height: 64px;
  }

  .site-nav { padding: 12px 24px; gap: 12px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 101;
  }
  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Animate to X when open */
  .site-nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .site-nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Dropdown panel */
  .site-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(10,22,40,0.08);
    border-bottom: 2px solid rgba(10,22,40,0.08);
    z-index: 100;
    padding: 8px 0 20px;
  }
  .site-nav.nav-open .site-links { display: block; }

  .site-links ul { flex-direction: column; gap: 0; }
  .site-links ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(10,22,40,0.06);
    text-decoration: none;
  }
  .site-links ul li:last-child a { border-bottom: none; }

  /* Mobile CTA inside dropdown */
  .site-cta-mobile {
    display: block;
    margin: 16px 24px 0;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    border: 1.5px solid var(--color-dark);
    text-decoration: none;
    color: var(--color-dark);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .site-cta-mobile:hover { background: var(--color-dark); color: #fff; }

  /* Hide desktop CTA */
  .site-cta-desktop { display: none; }
}

.content-page { padding: 72px 56px; }

/* Coming soon (whitepaper / case study) */
.coming-soon-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  padding: 72px 48px 100px;
  background: #fff;
}
.coming-soon-inner { max-width: 560px; text-align: center; margin: 0 auto; }
.coming-soon-status {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
}
.coming-soon-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.coming-soon-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 32px;
}
.coming-soon-back {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.coming-soon-back:hover { color: var(--color-orange); }
a.resource-tag { text-decoration: none; }
a.resource-tag:hover { background: var(--color-dark); color: #fff; }
.content-shell { max-width: 960px; margin: 0 auto; }
.content-title { font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1; margin: 0 0 18px; text-transform: uppercase; }
.content-body { font-size: 1rem; line-height: 1.75; }
.content-list-item { padding: 24px 0; border-top: 1px solid rgba(10, 22, 40, 0.12); }
.content-kicker, .content-meta { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; font-weight: 900; }
.article-header { padding-bottom: 36px; }
.article-image { margin: 32px 0 0; }
.article-image img { display: block; width: 100%; height: auto; border-radius: 8px; }
.article-image figcaption { margin-top: 12px; font-size: 0.9rem; line-height: 1.6; opacity: 0.75; }
.gh-content { line-height: 1.8; }
.gh-content img { max-width: 100%; height: auto; }
.kg-width-wide, .kg-width-full { display: block; width: auto; max-width: none; }
.kg-width-wide { margin-left: calc(50% - 50vw + 48px); margin-right: calc(50% - 50vw + 48px); }
.kg-width-full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.kg-width-full img, .kg-width-wide img { display: block; width: 100%; height: auto; }
.kg-card-hascaption figcaption { margin-top: 12px; font-size: 0.9rem; line-height: 1.6; opacity: 0.75; }

.site-home { background: var(--color-bg); }

/* Shared section styling adapted from the Vue site */
.hero, .ticker-bar, .sectors-section, .meth-section, .resources-section, .footer-section { background: #fff; }
.hero, .sectors-section, .meth-section, .resources-section, .footer-section { width: 100%; }
.hero {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 24px;
  padding: 0 28px 0 24px;
  overflow: hidden;
  min-height: 0;
  background-color: #ffffff;
}
.hero-content {
  flex: 0 0 min(44vw, 620px);
  max-width: 620px;
  position: relative;
  z-index: 3;
}
.tagline, .hero-heading, .hero-subheading, .hero-body p, .cta-link, .ticker-item, .section-label-row, .section-heading, .card-title, .card-desc, .card-tag, .meth-tagline, .step-num, .step-title, .step-desc, .step-highlight, .resource-title, .resource-desc, .resource-tag, .footer-heading, .contact-label, .contact-email, .footer-cta, .footer-note, .footer-copy { font-family: var(--font-mono); }

.hero-heading, .section-heading, .footer-heading { font-weight: 900; text-transform: uppercase; }
.tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  margin-bottom: 18px;
}
.tagline-bullet { color: var(--color-orange); font-size: 0.55rem; line-height: 1; }
.hero-heading {
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  color: var(--color-primary);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.hero-heading .block { display: block; }
.hero-heading .whitespace-nowrap { white-space: nowrap; }
.hero-subheading-wrap { margin-bottom: 28px; min-height: 2rem; overflow: hidden; }
.hero-subheading { font-size: clamp(0.9rem, 1.8vw, 1.45rem); color: var(--color-dark); }
.hero-body { border-left: 3px solid var(--color-orange); padding-left: 16px; margin-bottom: 36px; }
.hero-body p { font-size: 1.05rem; font-weight: 600; line-height: 1.8; max-width: 480px; }
.hero-cta { display: flex; align-items: center; gap: 18px; }
.cta-line { display: block; width: 54px; height: 1.5px; background-color: var(--color-dark); flex-shrink: 0; }
.cta-link { font-size: 0.78rem; font-weight: 900; letter-spacing: 0.14em; color: var(--color-dark); text-decoration: none; transition: color 0.2s ease; }
.cta-link:hover { color: var(--color-orange); }
.hero-globe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.globe-container { width: min(80vh, 860px); height: min(80vh, 860px); opacity: 0.95; position: relative; }
.globe-container canvas { width: 100% !important; height: 100% !important; display: block; position: relative; z-index: 1; }

.ticker-bar { flex-shrink: 0; overflow: hidden; padding: 12px 0; border-top: 1px solid rgba(10, 22, 40, 0.12); }
.ticker-track { display: flex; width: max-content; will-change: transform; animation: ticker-scroll 28s linear infinite; }
.ticker-set { display: flex; flex-shrink: 0; }
.ticker-item { font-size: 0.68rem; font-weight: 900; letter-spacing: 0.14em; padding: 0 24px; white-space: nowrap; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(var(--ticker-move, -25%)); } }

.sectors-section, .meth-section { padding: 72px 48px 80px; }
.resources-section { padding: 80px 0 100px; }
.footer-section { min-height: 360px; background: #1a6b8c; color: #fff; position: relative; overflow: hidden; }
.footer-inner { padding: 48px 60px 32px; }
.footer-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; z-index: 0; }
.footer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; min-height: 360px; }
.footer-main { display: flex; flex-direction: column; align-items: flex-start; }
.footer-heading { font-family: var(--font-mono); font-size: clamp(2rem, 4vw, 3.6rem); color: #fff; line-height: 1; letter-spacing: -0.01em; margin-bottom: 28px; }
.footer-contact { margin-bottom: 18px; }
.contact-label { font-size: 0.64rem; font-weight: 900; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.contact-email { font-size: 0.95rem; font-weight: 900; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: opacity 0.2s ease; }
.contact-email:hover { opacity: 0.8; }
.footer-cta { display: inline-block; background: #fff; color: var(--color-dark); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.05em; padding: 14px 30px; text-decoration: none; cursor: pointer; margin-bottom: 18px; transition: background 0.2s ease, color 0.2s ease; }
.footer-cta:hover { background: var(--color-dark); color: #fff; }
.footer-note { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: flex-end; gap: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-linkedin { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s ease; display: flex; align-items: center; }
.footer-linkedin:hover { color: #fff; }
.footer-copy { font-size: 0.62rem; font-weight: 900; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.meth-tagline { opacity: 0.86; }
.step-desc { opacity: 0.9; }
.resource-desc { opacity: 0.9; }
.contact-label { color: rgba(255,255,255,0.9); }
.footer-note { color: rgba(255,255,255,0.86); }
.footer-linkedin { color: rgba(255,255,255,0.92); }
.footer-copy { color: rgba(255,255,255,0.86); }

.sectors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.sector-card { min-height: 480px; background: linear-gradient(180deg, #1f3342, #111a24); border-radius: 8px; position: relative; overflow: hidden; }
.card-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%); z-index: 1; }
.card-content { position: absolute; inset: auto 0 0 0; padding: 24px 28px; z-index: 2; }
.card-title { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.card-desc { font-size: 1rem; font-weight: 900; color: #ffffffd9; line-height: 1.6; margin-bottom: 12px; max-width: 480px; }
.card-tag { display: inline-block; border: 1px solid rgba(255,255,255,0.55); color: #ffffffd9; font-size: 0.58rem; font-weight: 900; letter-spacing: 0.14em; padding: 4px 10px; text-transform: uppercase; }

.meth-section { background-color: #fff; position: relative; overflow: hidden; }
.meth-watermark { position: absolute; top: -160px; right: -160px; width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(10,22,40,0.06); pointer-events: none; z-index: 0; }
.meth-watermark::before { content: ''; position: absolute; inset: 60px; border-radius: 50%; border: 1px solid rgba(10,22,40,0.04); }
.meth-inner { position: relative; z-index: 1; }
.meth-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 80px; }
.meth-header-left { flex: 1; }
.meth-header-right { text-align: right; padding-top: 4px; }
.meth-tagline { font-size: 0.68rem; font-weight: 900; letter-spacing: 0.1em; color: var(--color-dark); line-height: 1.7; opacity: 0.6; }
.meth-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.meth-step, .resource-row { background: #fff; }
.meth-step { display: flex; flex-direction: column; background-color: #f7f8fa; border: 1px solid rgba(21,85,119,0.14); border-top: 3px solid var(--color-primary); border-radius: 4px; padding: 36px 32px 32px; box-shadow: 0 2px 12px rgba(21,85,119,0.06); transition: box-shadow 0.2s ease, transform 0.2s ease; }
.meth-step:hover { box-shadow: 0 6px 28px rgba(21,85,119,0.13); transform: translateY(-3px); }
.step-num { font-size: 1.4rem; font-weight: 900; color: #c46a00; margin-bottom: 14px; }
.step-title { font-size: 1.05rem; font-weight: 900; color: var(--color-dark); margin-bottom: 16px; line-height: 1.3; }
.step-desc { font-size: 0.85rem; font-weight: 600; color: var(--color-dark); line-height: 1.75; opacity: 0.75; border-left: 2px solid rgba(10,22,40,0.18); padding-left: 14px; margin-bottom: 18px; }
.step-highlight { font-size: 0.85rem; font-weight: 700; color: #555e6d; letter-spacing: 0.02em; }

.resources-list { display: flex; flex-direction: column; }
.resources-inner { padding: 0 48px; margin-bottom: 52px; }
.resource-row { display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; align-items: center; justify-items: start; padding: 36px 48px; border-top: 1px solid rgba(10,22,40,0.12); column-gap: 16px; row-gap: 0; width: 100%; cursor: pointer; background: transparent; transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease; }
.resource-row:last-child { border-bottom: 1px solid rgba(10,22,40,0.12); }
.resource-row:hover { background: rgba(21,85,119,0.03); box-shadow: 0 6px 28px rgba(21,85,119,0.10); transform: translateY(-3px); }
.resource-num { font-size: 0.62rem; font-weight: 900; color: #ad5f00; letter-spacing: 0.08em; line-height: 1; white-space: nowrap; }
.resource-body { min-width: 0; }
.resource-title { font-size: 1.5rem; font-weight: 900; color: var(--color-dark); margin-bottom: 10px; line-height: 1.2; transition: color 0.22s ease; }
.resource-row:hover .resource-title { color: var(--color-primary); }
.resource-desc { font-size: 0.85rem; font-weight: 600; color: var(--color-dark); opacity: 0.65; line-height: 1.75; max-width: 100%; }
.resource-tags { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; align-items: center; justify-self: end; align-self: center; }
.resource-tag { display: inline-block; border: 1px solid rgba(10,22,40,0.35); color: var(--color-dark); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em; padding: 5px 12px; text-transform: uppercase; white-space: nowrap; margin-right: 8px; cursor: pointer; transition: background 0.18s ease, color 0.18s ease; }
.resource-tags .resource-tag:last-child { margin-right: 0; }
.resource-tag:hover { background: var(--color-dark); color: #fff; }

/* Resource row as link */
a.resource-row { text-decoration: none; }

/* Post detail page */
.post-page { background: var(--color-bg); }
.post-hero-image { width: 100%; max-height: 520px; overflow: hidden; }
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-shell { max-width: 820px; margin: 0 auto; padding: 56px 48px 100px; }
.post-back { display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; color: var(--color-primary); text-decoration: none; margin-bottom: 40px; transition: color 0.2s ease; }
.post-back:hover { color: var(--color-orange); }
.post-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(10,22,40,0.1); }
.post-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.14em; color: var(--color-orange); text-transform: uppercase; margin-bottom: 14px; }
.post-title { font-family: var(--font-mono); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 900; color: var(--color-dark); line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 20px; }
.post-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; color: var(--color-dark); opacity: 0.45; }
.post-dot { opacity: 0.5; }
.post-body { font-family: var(--font-mono); font-size: 1rem; line-height: 1.85; color: var(--color-dark); }
.post-body h2 { font-size: 1.6rem; font-weight: 900; margin: 48px 0 18px; text-transform: uppercase; letter-spacing: -0.01em; }
.post-body h3 { font-size: 1.2rem; font-weight: 900; margin: 36px 0 14px; }
.post-body p { margin: 0 0 24px; }
.post-body a { color: var(--color-primary); text-decoration: underline; }
.post-body a:hover { color: var(--color-orange); }
.post-body img { max-width: 100%; height: auto; border-radius: 4px; margin: 32px 0; }
.post-body blockquote { border-left: 3px solid var(--color-orange); margin: 32px 0; padding: 4px 0 4px 24px; font-style: normal; opacity: 0.75; }
.post-body ul, .post-body ol { padding-left: 24px; margin: 0 0 24px; }
.post-body li { margin-bottom: 8px; }

/* Blog listing page */
.blog-page { background: var(--color-bg); min-height: calc(100vh - var(--nav-height)); padding: 72px 48px 100px; }
.blog-page-inner { max-width: 1320px; margin: 0 auto; }
.blog-page-header { margin-bottom: 56px; border-bottom: 1px solid rgba(10,22,40,0.1); padding-bottom: 40px; }
.blog-page-heading { font-family: var(--font-mono); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--color-dark); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.1; margin: 12px 0 14px; }
.blog-page-sub { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 600; color: var(--color-dark); opacity: 0.55; margin: 0; line-height: 1.7; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card { background: #fff; border: 1px solid rgba(21,85,119,0.14); border-top: 3px solid var(--color-primary); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(21,85,119,0.06); transition: box-shadow 0.2s ease, transform 0.2s ease; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: 0 6px 28px rgba(21,85,119,0.13); transform: translateY(-3px); }

.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; flex-shrink: 0; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder { aspect-ratio: 16/9; background: linear-gradient(135deg, #eef2f6 0%, #dde4ec 100%); flex-shrink: 0; }

.blog-card-body { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.14em; color: var(--color-orange); text-transform: uppercase; margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 900; color: var(--color-dark); line-height: 1.3; margin: 0 0 12px; }
.blog-card-title a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--color-dark); opacity: 0.65; line-height: 1.75; margin: 0; padding-bottom: 20px; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(10,22,40,0.1); padding-top: 16px; margin-top: auto; }
.blog-card-date { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; color: var(--color-dark); opacity: 0.45; }
.blog-card-cta { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
.blog-card-cta:hover { color: var(--color-orange); }

.blog-empty { text-align: center; padding: 80px 0; font-family: var(--font-mono); font-size: 1rem; font-weight: 700; color: var(--color-dark); opacity: 0.45; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(10,22,40,0.1); font-family: var(--font-mono); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; }
.pagination a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
.pagination a:hover { color: var(--color-orange); }
.page-number { color: var(--color-dark); opacity: 0.45; }
.older-posts, .newer-posts { min-width: 120px; }
.newer-posts { text-align: right; }

@media (max-width: 900px) {
  :root { --nav-height: 56px; }
  .site-nav, .hero, .sectors-section, .meth-section, .content-page { padding-left: 24px; padding-right: 24px; }
  .sectors-grid, .meth-steps { grid-template-columns: 1fr; }
  .resource-row { grid-template-columns: max-content minmax(0, 1fr); column-gap: 10px; row-gap: 14px; padding-left: 24px; padding-right: 24px; }
  .resource-tags { grid-column: 2; justify-self: start; }
  .hero { padding: 48px 24px 28px; flex-direction: column; justify-content: center; }
  .hero-content { max-width: 100%; flex: 0 0 auto; }
  .hero-body { padding-top: 0; }
  .hero-heading { font-size: clamp(2.4rem, 9vw, 4rem); letter-spacing: -0.02em; }
  .hero-subheading { font-size: clamp(0.8rem, 3vw, 1.1rem); }
  .hero-body p { max-width: 100%; font-size: 0.78rem; }
  .globe-container { width: min(90vw, 560px); height: min(90vw, 560px); opacity: 0.15; }
  .sectors-section { padding: 52px 24px 60px; }
  .sector-card { height: 340px; }
  .meth-section { padding: 52px 24px 64px; }
  .meth-steps { grid-template-columns: 1fr; }
  .meth-header { flex-direction: column; gap: 12px; margin-bottom: 48px; }
  .meth-header-right { text-align: left; }
  .meth-step { padding: 28px 22px 24px; }
  .resources-section { padding: 52px 0 64px; }
  .resources-inner { padding: 0 24px; }
  .resource-tags { width: 100%; justify-content: flex-start; }
  .resource-title { font-size: 1.2rem; }
  .footer-inner { padding: 36px 28px 28px; gap: 24px; }
  .footer-heading { font-size: clamp(1.6rem, 8vw, 2.6rem); margin-bottom: 20px; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
  .coming-soon-page { padding: 52px 24px 64px; }
  .blog-page { padding: 52px 24px 64px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .post-shell { padding: 40px 24px 72px; }
}

@media (max-width: 480px) {
  .footer-heading { font-size: clamp(1.2rem, 6vw, 1.6rem); letter-spacing: -0.02em; }
  .footer-inner { padding: 28px 20px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-heading { font-size: clamp(1.4rem, 7.5vw, 1.8rem); letter-spacing: -0.03em; }
}