:root {
  color-scheme: dark;
  --j-bg: #080909;
  --j-text: #f4f5ef;
  --j-muted: #a4a79e;
  --j-lime: #d7f94b;
  --j-line: #282a25;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--j-bg);
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse 600px 330px at 76% 130px, #c6ee2910, transparent),
    var(--j-bg);
  color: var(--j-text);
  font:
    16px/1.6 Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--j-lime);
  outline-offset: 5px;
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
}
a:hover {
  color: var(--j-lime);
}
.j-shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.j-skip {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px;
  background: var(--j-lime);
  color: #080909;
  z-index: 100;
}
.j-skip:focus {
  top: 10px;
}
.j-header {
  border-bottom: 1px solid var(--j-line);
  background: #080909f5;
  position: sticky;
  top: 0;
  z-index: 20;
}
.j-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.j-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.8px;
}
.j-brand span {
  color: var(--j-lime);
  margin-left: -9px;
}
.j-brand img {
  margin-right: 2px;
}
.j-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.j-login {
  background: #1b1d17;
  border: 1px solid #3d4430;
  border-radius: 24px;
  padding: 8px 17px;
}
.j-login span {
  color: var(--j-lime);
  margin-left: 5px;
}
.j-index-head {
  padding: 76px 0 48px;
}
.j-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--j-lime);
  margin-bottom: 14px;
}
.j-index-head h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.j-index-head em {
  font-style: normal;
  color: var(--j-lime);
}
.j-index-head p {
  margin: 25px 0 20px;
  color: var(--j-muted);
  font-size: 18px;
}
.j-count {
  font-size: 12px;
  color: #81867a;
}
.j-section-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: var(--j-muted);
}
.j-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.j-card {
  position: relative;
  background: #101210;
  border: 1px solid var(--j-line);
  border-radius: 20px;
  min-width: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.j-card:hover {
  border-color: #515c31;
  background: #13170f;
}
.j-card-text {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.j-card h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.j-card h3 a:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
}
.j-card h3 a:focus-visible {
  outline: none;
}
.j-card:focus-within {
  outline: 2px solid var(--j-lime);
  outline-offset: 4px;
}
.j-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--j-muted);
  margin: 14px 0 24px;
}
.j-read {
  font-size: 12px;
  color: #b4baa8;
  display: flex;
  align-self: stretch;
  justify-content: space-between;
  margin-top: auto;
}
.j-read span {
  color: var(--j-lime);
  font-size: 18px;
  line-height: 1;
}
.j-card-art {
  height: 174px;
  border-bottom: 1px solid var(--j-line);
  border-radius: 20px 20px 0 0;
  background: radial-gradient(ellipse at center, #cbee3316, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.j-card-art img {
  width: 180px;
  height: 160px;
  object-fit: contain;
}
.j-card-featured {
  display: flex;
  flex-direction: column;
}
.j-card-featured .j-card-text {
  flex: 1;
  height: auto;
}
.j-explore {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 78px 0 24px;
}
.j-explore h2,
.j-category h2,
.j-related > h2 {
  font-size: 30px;
  font-weight: 660;
}
.j-explore p,
.j-category header p {
  color: var(--j-muted);
  margin-top: 8px;
  font-size: 15px;
}
.j-search {
  width: 350px;
  max-width: 100%;
  flex-shrink: 0;
}
.j-search label {
  display: block;
  font-size: 12px;
  color: var(--j-muted);
  margin-bottom: 6px;
}
.j-search > div {
  position: relative;
}
.j-search input {
  width: 100%;
  border: 1px solid #3a3d33;
  background: #101210;
  border-radius: 12px;
  color: var(--j-text);
  padding: 13px 44px 13px 15px;
  font-size: 14px;
  appearance: none;
}
.j-search input::-webkit-search-cancel-button {
  display: none;
}
.j-search button {
  position: absolute;
  right: 5px;
  top: 3px;
  width: 40px;
  height: 42px;
  background: transparent;
  border: 0;
  color: var(--j-lime);
  font-size: 26px;
  cursor: pointer;
}
.j-search #blog-search-status {
  font-size: 12px;
  min-height: 0;
}
.j-search #blog-search-status:empty {
  display: none;
}
.j-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 45px;
}
.j-topics a {
  border: 1px solid var(--j-line);
  border-radius: 24px;
  padding: 9px 14px;
  color: #b6baae;
  font-size: 12px;
}
.j-topics a:hover {
  border-color: var(--j-lime);
  color: var(--j-lime);
}
.j-category {
  margin: 0 0 54px;
  scroll-margin-top: 24px;
}
.j-category header {
  margin-bottom: 24px;
}
.j-category .j-eyebrow {
  display: none;
}
.j-empty {
  max-width: 650px;
  color: var(--j-muted);
  padding: 40px 0 70px;
}
.j-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 38px 40px;
  background:
    radial-gradient(ellipse at 75% 50%, #c1e52a12, transparent 70%), #101210;
  border: 1px solid #343b24;
  border-radius: 24px;
  margin: 70px 0;
}
.j-cta h2 {
  font-size: 30px;
}
.j-cta p {
  color: var(--j-muted);
  max-width: 530px;
  margin-top: 12px;
  font-size: 15px;
}
.j-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-shrink: 0;
  border-radius: 30px;
  background: var(--j-lime);
  color: #11140a;
  font-weight: 650;
  font-size: 14px;
  padding: 14px 23px;
}
.j-button:hover {
  color: #000;
  background: #e4ff78;
}
.j-footer {
  padding: 34px 0 32px;
  border-top: 1px solid var(--j-line);
  margin-top: 74px;
}
.j-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.j-footer > div > span {
  font-size: 14px;
  color: var(--j-muted);
}
.j-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  font-size: 12px;
  color: var(--j-muted);
  margin: 22px 0;
}
.j-footer small {
  font-size: 11px;
  color: #7e8278;
}
.j-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--j-muted);
  font-size: 12px;
  padding-top: 32px;
}
.j-crumbs > span {
  color: #565c4c;
}
.j-article-head {
  max-width: 950px;
  margin: 52px 0 50px;
}
.j-article-head h1 {
  font-size: clamp(32px, 4.1vw, 53px);
  line-height: 1.12;
}
.j-summary {
  font-size: 19px;
  color: #b9beb0;
  line-height: 1.65;
  margin-top: 26px;
  max-width: 840px;
}
.j-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  font-size: 12px;
  color: var(--j-muted);
  margin-top: 24px;
}
.j-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.j-article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 740px);
  gap: 64px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid var(--j-line);
}
.j-toc {
  position: sticky;
  top: 108px;
}
.j-toc summary {
  font-size: 13px;
  font-weight: 650;
  color: var(--j-lime);
  cursor: pointer;
}
.j-toc nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.j-toc nav a {
  font-size: 13px;
  color: #a5ad97;
  line-height: 1.5;
}
.j-toc nav a:hover {
  color: var(--j-lime);
}
.j-prose {
  font-size: 17px;
  line-height: 1.8;
  color: #c5c9be;
  overflow-wrap: anywhere;
}
.j-prose h2 {
  font-size: 28px;
  font-weight: 650;
  color: var(--j-text);
  margin: 44px 0 20px;
  scroll-margin-top: 110px;
  overflow-wrap: normal;
}
.j-prose > h2:first-child {
  margin-top: 0;
}
.j-prose p {
  margin-bottom: 20px;
}
.j-prose ul {
  padding-left: 23px;
  margin: 22px 0 28px;
}
.j-prose li {
  padding-left: 6px;
  margin-bottom: 9px;
}
.j-prose li::marker {
  color: var(--j-lime);
}
.j-prose a {
  text-decoration: underline;
  text-decoration-color: #69784b;
  text-underline-offset: 4px;
}
.j-sources {
  border-top: 1px solid var(--j-line);
  margin-top: 35px;
  padding-top: 24px;
}
.j-sources h2 {
  font-size: 16px;
  margin: 0 0 15px;
}
.j-sources ul {
  font-size: 13px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.j-sources li {
  padding: 0;
}
.j-related > h2 {
  margin-bottom: 25px;
}
.j-editorial {
  max-width: 740px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .j-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .j-featured .j-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .j-featured .j-card-text {
    padding: 18px;
  }
  .j-featured h3 {
    font-size: 18px;
  }
  .j-featured .j-card-art {
    height: 140px;
  }
  .j-featured .j-card-art img {
    height: 130px;
  }
  .j-article-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 30px;
  }
  .j-explore {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .j-search {
    width: 100%;
  }
  .j-cta {
    padding: 30px;
    gap: 24px;
  }
  .j-cta h2 {
    font-size: 25px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 88px;
  }
  .j-shell {
    width: calc(100% - 32px);
  }
  .j-header-inner {
    min-height: 64px;
    gap: 14px;
  }
  .j-brand {
    font-size: 21px;
    gap: 7px;
  }
  .j-brand img {
    width: 29px;
    height: 29px;
  }
  .j-header nav {
    gap: 18px;
    font-size: 13px;
  }
  .j-service-link {
    display: none;
  }
  .j-login {
    padding: 7px 12px;
  }
  .j-index-head {
    padding: 45px 0 32px;
  }
  .j-index-head h1 {
    font-size: 43px;
  }
  .j-index-head p {
    font-size: 16px;
    margin: 21px 0 16px;
  }
  .j-desktop-break {
    display: none;
  }
  .j-grid,
  .j-featured .j-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .j-featured .j-card {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr);
  }
  .j-featured .j-card-art {
    height: 100%;
    border: 0;
    background: radial-gradient(ellipse at center, #cbee3316, transparent 72%);
    padding: 8px;
  }
  .j-featured .j-card-art img {
    width: 95px;
    height: 130px;
  }
  .j-featured .j-card-text {
    padding: 20px 18px 20px 4px;
  }
  .j-featured .j-eyebrow {
    font-size: 9px;
    margin-bottom: 9px;
  }
  .j-featured h3 {
    font-size: 18px;
  }
  .j-featured p {
    display: none;
  }
  .j-featured .j-read {
    margin-top: 16px;
  }
  .j-card-text {
    padding: 22px;
  }
  .j-card h3 {
    font-size: 21px;
  }
  .j-card p {
    margin: 12px 0 20px;
  }
  .j-explore {
    margin-top: 45px;
  }
  .j-explore h2,
  .j-category h2,
  .j-related > h2 {
    font-size: 27px;
  }
  .j-topics {
    gap: 8px;
    margin-bottom: 35px;
  }
  .j-topics a {
    font-size: 11px;
    padding: 8px 11px;
  }
  .j-category {
    margin-bottom: 38px;
  }
  .j-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 27px 22px;
    gap: 23px;
    margin: 45px 0;
  }
  .j-cta h2 {
    font-size: 27px;
  }
  .j-button {
    align-self: flex-start;
  }
  .j-footer {
    margin-top: 48px;
  }
  .j-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .j-footer nav {
    gap: 12px 18px;
  }
  .j-crumbs {
    font-size: 11px;
    padding-top: 24px;
  }
  .j-article-head {
    margin: 30px 0;
  }
  .j-article-head h1 {
    font-size: 33px;
    letter-spacing: -0.035em;
  }
  .j-summary {
    font-size: 17px;
    margin-top: 22px;
  }
  .j-meta {
    font-size: 11px;
    gap: 9px 15px;
  }
  .j-article-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 24px;
  }
  .j-toc {
    position: static;
    width: 100%;
  }
  .j-toc nav {
    gap: 12px;
  }
  .j-prose {
    font-size: 16px;
    line-height: 1.8;
    width: 100%;
  }
  .j-prose h2 {
    font-size: 25px;
    margin-top: 36px;
  }
  .j-prose p {
    margin-bottom: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
