:root {
	--rope-black: #020202;
	--rope-bg: #050505;
	--rope-panel: #10100f;
	--rope-panel-2: #151412;
	--rope-border: rgba(214, 171, 84, 0.26);
	--rope-border-soft: rgba(255, 255, 255, 0.1);
	--rope-text: #f5f0e3;
	--rope-muted: #b9b1a2;
	--rope-dim: #777064;
	--rope-gold: #d8aa4c;
	--rope-gold-bright: #f2cf7a;
	--rope-green: #22d17f;
	--rope-red: #ff5d4d;
	--rope-blue: #5ba3aa;
	--rope-radius: 8px;
	--rope-shadow: 0 22px 70px rgba(0, 0, 0, 0.56);
	--rope-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--rope-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--rope-black);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 36% -12%, rgba(214, 171, 84, 0.16), transparent 32rem),
		linear-gradient(180deg, #040404 0%, #080807 45%, #040404 100%);
	color: var(--rope-text);
	font-family: var(--rope-sans);
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	content: "";
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 88px 88px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 74%);
}

body::after {
	position: fixed;
	inset: auto 0 0;
	z-index: -1;
	height: 42vh;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, transparent, rgba(216, 170, 76, 0.06));
}

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

img {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--rope-gold);
	color: #060606;
}

.rope-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(3, 3, 3, 0.92);
	border-bottom: 1px solid var(--rope-border);
	backdrop-filter: blur(14px);
}

.rope-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(300px, 440px) minmax(0, 1fr) 48px;
	align-items: center;
	gap: 22px;
	width: min(100%, 1760px);
	margin: 0 auto;
	padding: 16px 42px 13px;
}

.rope-brand {
	display: inline-grid;
	grid-template-columns: 72px 1fr;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.rope-brand__mark {
	position: relative;
	display: block;
	width: 68px;
	height: 42px;
	border-bottom: 1px solid rgba(242, 207, 122, 0.46);
}

.rope-brand__mark::before {
	position: absolute;
	top: 23px;
	left: 7px;
	width: 55px;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, var(--rope-gold), transparent);
	transform: rotate(-12deg);
}

.rope-brand__person {
	position: absolute;
	top: 4px;
	left: 28px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f1eadb;
	box-shadow:
		0 10px 0 0 #f1eadb,
		0 20px 0 -2px #f1eadb;
}

.rope-brand__person::before,
.rope-brand__person::after {
	position: absolute;
	content: "";
	background: #f1eadb;
	transform-origin: center;
}

.rope-brand__person::before {
	top: 11px;
	left: -11px;
	width: 30px;
	height: 2px;
	transform: rotate(-15deg);
}

.rope-brand__person::after {
	top: 17px;
	left: -6px;
	width: 22px;
	height: 2px;
	transform: rotate(72deg);
}

.rope-brand__text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.rope-brand__name {
	display: block;
	color: #fff9ed;
	font-family: var(--rope-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.rope-brand__tagline {
	display: block;
	color: var(--rope-gold-bright);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.rope-nav {
	justify-self: end;
	min-width: 0;
	max-width: 100%;
}

.rope-nav__list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2vw, 30px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.rope-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: #ece6da;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.rope-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: -14px;
	left: 0;
	height: 3px;
	content: "";
	background: linear-gradient(90deg, var(--rope-gold), var(--rope-gold-bright));
	opacity: 0;
	transform: scaleX(0.64);
	transition: opacity 180ms ease, transform 180ms ease;
}

.rope-nav__list .current-menu-item > a,
.rope-nav__list a:hover,
.rope-nav__list a:focus-visible {
	color: var(--rope-gold-bright);
}

.rope-nav__list .current-menu-item > a::after,
.rope-nav__list a:hover::after,
.rope-nav__list a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.rope-search-toggle {
	position: relative;
	display: grid;
	place-items: center;
	justify-self: end;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.025);
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease;
}

.rope-search-toggle:hover,
.rope-search-toggle:focus-visible {
	border-color: rgba(242, 207, 122, 0.58);
	background: rgba(216, 170, 76, 0.08);
}

.rope-search-toggle span {
	position: relative;
	display: block;
	width: 19px;
	height: 19px;
	border: 2px solid #c8c1b4;
	border-radius: 50%;
}

.rope-search-toggle span::after {
	position: absolute;
	right: -8px;
	bottom: -5px;
	width: 10px;
	height: 2px;
	content: "";
	background: #c8c1b4;
	transform: rotate(45deg);
	transform-origin: left center;
}

.rope-header-search {
	position: absolute;
	top: calc(100% + 10px);
	right: 42px;
	z-index: 60;
	display: none;
	width: min(420px, calc(100vw - 44px));
	margin: 0;
	padding: 0;
	border: 1px solid var(--rope-border);
	border-radius: var(--rope-radius);
	background: rgba(7, 7, 6, 0.96);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(14px);
}

.rope-header-search.is-open {
	display: block;
}

.rope-shell {
	width: min(100%, 1760px);
	margin: 0 auto;
	padding: 0 42px;
}

.rope-shell--with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	align-items: start;
	gap: 44px;
}

.rope-main {
	padding: 0 0 58px;
}

.rope-content {
	min-width: 0;
}

.rope-kicker {
	margin: 0 0 8px;
	color: var(--rope-gold-bright);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	text-transform: uppercase;
}

.rope-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
	min-height: 500px;
	overflow: hidden;
	border-bottom: 1px solid var(--rope-border-soft);
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.83) 43%, rgba(0, 0, 0, 0.5) 100%),
		linear-gradient(180deg, rgba(216, 170, 76, 0.1), transparent 42%);
}

.rope-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 74px 74px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.rope-hero__copy {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 620px;
	padding: 60px 8px 54px 8px;
}

.rope-hero h1 {
	max-width: 640px;
	margin: 0;
	color: #fffaf0;
	font-family: var(--rope-serif);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.rope-hero h1 span {
	display: block;
}

.rope-hero__lead {
	max-width: 560px;
	margin: 26px 0 0;
	color: #d7cfbf;
	font-size: 16px;
	line-height: 2;
}

.rope-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.rope-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid var(--rope-border);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rope-button:hover,
.rope-button:focus-visible {
	transform: translateY(-1px);
}

.rope-button--primary {
	background: linear-gradient(135deg, #d6aa54, #8d6426);
	color: #090805;
	border-color: rgba(242, 207, 122, 0.72);
	box-shadow: 0 12px 38px rgba(216, 170, 76, 0.24);
}

.rope-button--ghost {
	color: var(--rope-gold-bright);
	background: rgba(255, 255, 255, 0.03);
}

.rope-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 30px;
}

.rope-metrics div {
	min-width: 0;
	padding: 12px 10px;
	border: 1px solid var(--rope-border-soft);
	border-radius: var(--rope-radius);
	background: rgba(255, 255, 255, 0.035);
}

.rope-metrics span,
.rope-metrics strong {
	display: block;
	overflow-wrap: anywhere;
}

.rope-metrics span {
	color: var(--rope-dim);
	font-size: 11px;
	font-weight: 800;
}

.rope-metrics strong {
	color: var(--rope-text);
	font-size: 13px;
	line-height: 1.5;
}

.rope-hero__market {
	position: relative;
	z-index: 2;
	min-width: 0;
	padding: 28px 0 24px;
}

.rope-chart-shell {
	position: absolute;
	inset: 28px 0 30px;
	overflow: hidden;
	border-left: 1px solid rgba(216, 170, 76, 0.2);
	background: #050505;
	box-shadow: inset 0 0 80px rgba(216, 170, 76, 0.1);
}

.rope-chart-shell::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 34%),
		radial-gradient(circle at 70% 55%, rgba(216, 170, 76, 0.18), transparent 32%);
}

.rope-chart-shell__badge {
	position: absolute;
	right: 22px;
	top: 22px;
	z-index: 4;
	padding: 10px 14px;
	border: 1px solid rgba(242, 207, 122, 0.46);
	border-radius: var(--rope-radius);
	background: rgba(5, 5, 5, 0.78);
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42);
}

.rope-chart-shell__badge span,
.rope-chart-shell__badge strong {
	display: block;
	line-height: 1.3;
}

.rope-chart-shell__badge span {
	color: var(--rope-muted);
	font-size: 11px;
	font-weight: 800;
}

.rope-chart-shell__badge strong {
	color: var(--rope-gold-bright);
	font-size: 18px;
}

.rope-chart-fallback {
	display: grid;
	place-content: center;
	gap: 6px;
	height: 100%;
	padding: 28px;
	color: var(--rope-muted);
	text-align: center;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		radial-gradient(circle at center, rgba(216, 170, 76, 0.16), transparent 48%),
		#050505;
	background-size: 74px 74px, 74px 74px, auto, auto;
}

.rope-chart-fallback span,
.rope-chart-fallback strong,
.rope-chart-fallback small {
	display: block;
}

.rope-chart-fallback span {
	color: var(--rope-gold-bright);
	font-weight: 800;
}

.rope-chart-fallback strong {
	color: #fff8eb;
	font-family: var(--rope-serif);
	font-size: 28px;
}

.rope-chart-fallback small {
	max-width: 360px;
	font-size: 13px;
	line-height: 1.7;
}

.rope-practice {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
	gap: 26px;
	padding: 36px 0 8px;
}

.rope-practice__text {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 1px solid var(--rope-border);
	border-radius: var(--rope-radius);
	background:
		linear-gradient(135deg, rgba(216, 170, 76, 0.12), transparent 54%),
		rgba(255, 255, 255, 0.035);
}

.rope-practice__text > *:not(.rope-practice__gold) {
	position: relative;
	z-index: 2;
}

.rope-practice__text h2 {
	margin: 0;
	color: #fff8ea;
	font-family: var(--rope-serif);
	font-size: 28px;
	line-height: 1.65;
}

.rope-practice__text p:not(.rope-kicker) {
	margin-bottom: 0;
	color: var(--rope-muted);
}

.rope-practice__gold {
	position: absolute;
	right: -84px;
	bottom: -58px;
	z-index: 1;
	width: min(54%, 360px);
	opacity: 0.42;
	filter: drop-shadow(0 22px 42px rgba(216, 170, 76, 0.22));
	mask-image: radial-gradient(circle at 52% 56%, #000 0%, #000 56%, transparent 84%);
	pointer-events: none;
}

.rope-practice__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.rope-practice__grid div {
	padding: 20px;
	border: 1px solid var(--rope-border-soft);
	border-radius: var(--rope-radius);
	background: rgba(255, 255, 255, 0.035);
}

.rope-practice__grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-bottom: 12px;
	border: 1px solid var(--rope-border);
	border-radius: 50%;
	color: var(--rope-gold-bright);
	font-size: 12px;
	font-weight: 800;
}

.rope-practice__grid strong {
	display: block;
	color: #fff7e9;
	font-size: 16px;
}

.rope-practice__grid p {
	margin: 6px 0 0;
	color: var(--rope-muted);
	font-size: 13px;
	line-height: 1.75;
}

.rope-pillars {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.rope-pillar {
	display: grid;
	grid-template-columns: 48px 1fr;
	grid-template-areas:
		"icon title"
		"icon body"
		"icon link";
	gap: 2px 16px;
	min-height: 132px;
	padding: 20px;
	border: 1px solid var(--rope-border);
	border-radius: var(--rope-radius);
	background:
		linear-gradient(135deg, rgba(216, 170, 76, 0.1), transparent 62%),
		rgba(255, 255, 255, 0.035);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rope-pillar:hover,
.rope-pillar:focus-visible {
	border-color: rgba(242, 207, 122, 0.58);
	background: rgba(216, 170, 76, 0.08);
	transform: translateY(-2px);
}

.rope-pillar__icon {
	grid-area: icon;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(242, 207, 122, 0.42);
	border-radius: var(--rope-radius);
	color: var(--rope-gold-bright);
	font-size: 24px;
	font-weight: 800;
}

.rope-pillar strong {
	grid-area: title;
	color: #fff8eb;
	font-size: 17px;
}

.rope-pillar small {
	grid-area: body;
	color: var(--rope-muted);
	font-size: 12px;
	line-height: 1.65;
}

.rope-pillar em {
	grid-area: link;
	align-self: end;
	color: var(--rope-gold-bright);
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

.rope-featured-post {
	display: grid;
	grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
	gap: 0;
	margin-top: 34px;
	overflow: hidden;
	border: 1px solid var(--rope-border);
	border-radius: var(--rope-radius);
	background:
		linear-gradient(135deg, rgba(216, 170, 76, 0.1), transparent 60%),
		var(--rope-panel);
}

.rope-featured-post__image {
	min-height: 250px;
	background-position: center;
	background-size: cover;
}

.rope-featured-post__body {
	padding: 30px;
}

.rope-featured-post h2 {
	margin: 0;
	color: #fff8ec;
	font-family: var(--rope-serif);
	font-size: 28px;
	line-height: 1.55;
}

.rope-featured-post p:not(.rope-kicker) {
	color: var(--rope-muted);
}

.rope-text-link,
.rope-section-head > a,
.rope-widget__head a,
.rope-profile a,
.rope-pr a {
	color: var(--rope-gold-bright);
	font-size: 13px;
	font-weight: 800;
}

.rope-posts {
	margin-top: 36px;
}

.rope-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--rope-border-soft);
}

.rope-section-head h2 {
	margin: 0;
	color: #fff8eb;
	font-family: var(--rope-serif);
	font-size: 26px;
}

.rope-tabs {
	display: flex;
	gap: 8px;
	margin: 0 0 12px;
}

.rope-tabs button {
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid var(--rope-border-soft);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.025);
	color: var(--rope-muted);
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
}

.rope-tabs .is-active {
	border-color: var(--rope-border);
	background: rgba(216, 170, 76, 0.12);
	color: var(--rope-gold-bright);
}

.rope-post-list {
	display: grid;
	gap: 12px;
}

.rope-post-row {
	position: relative;
	display: grid;
	grid-template-columns: 260px 1fr 42px;
	align-items: stretch;
	gap: 22px;
	min-height: 128px;
	padding: 0 0 12px;
	border-bottom: 1px solid var(--rope-border-soft);
}

.rope-post-row__thumb {
	display: block;
	min-height: 128px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--rope-radius);
	background-color: #121212;
	background-position: center;
	background-size: cover;
}

.rope-post-row__body {
	min-width: 0;
	padding: 4px 0;
}

.rope-post-row__top {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: var(--rope-dim);
	font-size: 12px;
}

.rope-badge {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 10px;
	border: 1px solid rgba(216, 170, 76, 0.38);
	border-radius: 4px;
	color: var(--rope-gold-bright);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
}

.rope-post-row h3 {
	margin: 8px 0 6px;
	color: #fff7ea;
	font-size: 18px;
	line-height: 1.55;
}

.rope-post-row h3 a,
.rope-featured-post h2 a {
	overflow-wrap: anywhere;
}

.rope-post-row p {
	margin: 0;
	color: var(--rope-muted);
	font-size: 13px;
	line-height: 1.75;
}

.rope-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 9px;
	color: var(--rope-dim);
	font-size: 12px;
}

.rope-bookmark {
	position: relative;
	align-self: center;
	justify-self: end;
	width: 18px;
	height: 26px;
	border: 1px solid var(--rope-gold);
	border-bottom: 0;
	opacity: 0.86;
}

.rope-bookmark::after {
	position: absolute;
	right: -1px;
	bottom: -8px;
	left: -1px;
	height: 12px;
	content: "";
	background: linear-gradient(135deg, transparent 49%, var(--rope-gold) 50%, transparent 58%),
		linear-gradient(225deg, transparent 49%, var(--rope-gold) 50%, transparent 58%);
}

.rope-sidebar {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 12px;
	padding-top: 18px;
}

.rope-widget {
	overflow: hidden;
	border: 1px solid var(--rope-border-soft);
	border-radius: var(--rope-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
		rgba(12, 12, 11, 0.94);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.rope-widget:not(.rope-widget--search) {
	padding: 18px;
}

.rope-widget__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.rope-widget__head span {
	color: var(--rope-green);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.rope-widget__title {
	margin: 0;
	color: #fff8eb;
	font-size: 16px;
	line-height: 1.4;
}

.rope-search-form {
	display: grid;
	grid-template-columns: 1fr 78px;
	gap: 0;
}

.rope-search-field {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	border: 0;
	border-right: 1px solid var(--rope-border-soft);
	background: rgba(255, 255, 255, 0.035);
	color: var(--rope-text);
	outline: none;
}

.rope-search-field::placeholder {
	color: var(--rope-dim);
}

.rope-search-submit {
	height: 50px;
	border: 0;
	background: linear-gradient(135deg, #d6aa54, #8d6426);
	color: #070707;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
}

.rope-profile {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 18px;
	align-items: center;
}

.rope-profile__avatar {
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	border: 1px solid rgba(242, 207, 122, 0.38);
	border-radius: 50%;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.2)),
		url("../images/gold-bullion-xauusd.png") center / cover;
}

.rope-profile__avatar span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	color: var(--rope-gold-bright);
	font-weight: 800;
}

.rope-profile p,
.rope-pr p,
.rope-risk p {
	margin: 6px 0 10px;
	color: var(--rope-muted);
	font-size: 13px;
	line-height: 1.75;
}

.rope-ranking__list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: ranking;
}

.rope-ranking__list li {
	counter-increment: ranking;
}

.rope-ranking__list a {
	display: grid;
	grid-template-columns: 28px 64px 1fr;
	gap: 10px;
	align-items: center;
	color: #eee8dd;
	font-size: 13px;
	line-height: 1.55;
}

.rope-ranking__list a::before {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background: var(--rope-gold-bright);
	color: #080706;
	content: counter(ranking);
	font-size: 12px;
	font-weight: 800;
}

.rope-ranking__thumb {
	display: block;
	width: 64px;
	height: 42px;
	border-radius: 4px;
	background-position: center;
	background-size: cover;
}

.rope-categories ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 14px;
	padding: 0;
	margin: 12px 0 0;
	list-style: none;
}

.rope-categories li {
	min-width: 0;
	color: var(--rope-muted);
	font-size: 13px;
	overflow-wrap: anywhere;
}

.rope-categories a {
	color: #eee8dd;
}

.rope-tags__cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 12px;
}

.rope-tags__cloud a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 9px;
	border: 1px solid var(--rope-border-soft);
	border-radius: 4px;
	color: var(--rope-muted);
	font-size: 12px !important;
	line-height: 1.2;
}

.rope-pr {
	border-color: rgba(216, 170, 76, 0.34);
	background:
		linear-gradient(135deg, rgba(216, 170, 76, 0.12), transparent 56%),
		rgba(12, 12, 11, 0.96);
}

.rope-pr__label {
	display: inline-flex;
	min-height: 24px;
	padding: 0 8px;
	align-items: center;
	border: 1px solid rgba(216, 170, 76, 0.42);
	border-radius: 4px;
	color: var(--rope-gold-bright) !important;
	font-size: 11px !important;
	font-weight: 800;
}

.rope-pr h2,
.rope-risk h2 {
	margin: 8px 0 0;
	color: #fff8eb;
	font-size: 16px;
}

.rope-risk {
	border-color: rgba(255, 93, 77, 0.42);
	background: linear-gradient(135deg, rgba(255, 93, 77, 0.12), transparent 56%), rgba(12, 12, 11, 0.96);
}

.rope-archive-head {
	margin: 34px 0 24px;
	padding: 34px;
	border: 1px solid var(--rope-border);
	border-radius: var(--rope-radius);
	background:
		linear-gradient(135deg, rgba(216, 170, 76, 0.12), transparent 52%),
		var(--rope-panel);
}

.rope-archive-head--center {
	max-width: 820px;
	margin: 54px auto;
	text-align: center;
}

.rope-archive-head h1 {
	margin: 0;
	color: #fff8eb;
	font-family: var(--rope-serif);
	font-size: 34px;
	line-height: 1.55;
}

.rope-archive-head p {
	color: var(--rope-muted);
}

.rope-single {
	margin-top: 34px;
}

.rope-single__head {
	padding: 34px;
	border: 1px solid var(--rope-border);
	border-radius: var(--rope-radius);
	background:
		linear-gradient(135deg, rgba(216, 170, 76, 0.12), transparent 62%),
		var(--rope-panel);
}

.rope-single__head h1 {
	margin: 0;
	color: #fff8eb;
	font-family: var(--rope-serif);
	font-size: 38px;
	line-height: 1.65;
}

.rope-single__eyecatch {
	margin: 20px 0 0;
	overflow: hidden;
	border: 1px solid var(--rope-border-soft);
	border-radius: var(--rope-radius);
}

.rope-single__eyecatch img {
	display: block;
	width: 100%;
}

.rope-risk-strip {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 93, 77, 0.42);
	border-radius: var(--rope-radius);
	background: rgba(255, 93, 77, 0.08);
	color: #f4c7bf;
	font-size: 13px;
}

.rope-single__content {
	margin-top: 22px;
	padding: 34px;
	border: 1px solid var(--rope-border-soft);
	border-radius: var(--rope-radius);
	background: rgba(255, 255, 255, 0.03);
	color: #e7dfd2;
}

.rope-single__content h2,
.rope-single__content h3 {
	color: #fff8eb;
	line-height: 1.55;
}

.rope-single__content a {
	color: var(--rope-gold-bright);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.rope-single__content img {
	border-radius: var(--rope-radius);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--rope-border-soft);
	border-radius: 4px;
	color: var(--rope-muted);
}

.page-numbers.current {
	border-color: var(--rope-border);
	color: var(--rope-gold-bright);
}

.rope-footer {
	border-top: 1px solid var(--rope-border);
	background: #030303;
}

.rope-footer__inner {
	display: grid;
	grid-template-columns: 1fr minmax(320px, 560px);
	gap: 24px;
	width: min(100%, 1760px);
	margin: 0 auto;
	padding: 34px 42px;
}

.rope-footer__brand {
	margin: 0;
	color: #fff8eb;
	font-family: var(--rope-serif);
	font-size: 22px;
	font-weight: 700;
}

.rope-footer__copy,
.rope-footer__risk {
	margin: 6px 0 0;
	color: var(--rope-muted);
	font-size: 13px;
	line-height: 1.75;
}

.rope-empty {
	padding: 24px;
	border: 1px solid var(--rope-border-soft);
	border-radius: var(--rope-radius);
	color: var(--rope-muted);
}

@media (max-width: 1320px) {
	.rope-header__inner {
		grid-template-columns: minmax(260px, 360px) minmax(0, 1fr) 42px;
		gap: 18px;
	}

	.rope-brand__name {
		font-size: 21px;
	}

	.rope-nav {
		grid-column: auto;
		justify-self: end;
		width: auto;
		overflow: visible;
		padding-bottom: 0;
	}

	.rope-nav__list {
		justify-content: flex-end;
		gap: 18px;
	}

	.rope-nav__list a {
		font-size: 13px;
	}

	.rope-shell--with-sidebar {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 28px;
	}

	.rope-hero {
		grid-template-columns: 1fr;
	}

	.rope-hero__copy {
		max-width: 720px;
		padding-right: 24px;
	}

	.rope-hero__market {
		min-height: 420px;
	}

	.rope-chart-shell {
		inset: 0;
	}
}

@media (max-width: 1080px) {
	.rope-shell,
	.rope-header__inner,
	.rope-footer__inner {
		padding-right: 22px;
		padding-left: 22px;
	}

	.rope-header__inner {
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: start;
	}

	.rope-brand {
		grid-column: 1;
		grid-row: 1;
	}

	.rope-search-toggle {
		grid-column: 2;
		grid-row: 1;
		margin-top: 4px;
	}

	.rope-header-search {
		right: 22px;
	}

	.rope-nav {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: end;
		width: 100%;
		overflow-x: auto;
		padding-top: 6px;
		padding-bottom: 2px;
	}

	.rope-nav__list {
		justify-content: flex-end;
		width: max-content;
		min-width: 100%;
	}

	.rope-shell--with-sidebar {
		grid-template-columns: 1fr;
	}

	.rope-sidebar {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rope-widget--search,
	.rope-widget--market,
	.rope-risk {
		grid-column: 1 / -1;
	}

	.rope-practice,
	.rope-featured-post {
		grid-template-columns: 1fr;
	}

	.rope-pillars {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body {
		font-size: 15px;
	}

	.rope-header__inner {
		gap: 12px;
		padding-top: 12px;
	}

	.rope-brand {
		grid-template-columns: 52px 1fr;
	}

	.rope-brand__mark {
		width: 50px;
		height: 34px;
	}

	.rope-brand__person {
		left: 22px;
	}

	.rope-brand__name {
		font-size: 18px;
	}

	.rope-brand__tagline {
		font-size: 11px;
	}

	.rope-header-search {
		right: 14px;
		width: calc(100vw - 28px);
	}

	.rope-nav__list a {
		min-height: 34px;
		font-size: 13px;
	}

	.rope-hero {
		min-height: auto;
	}

	.rope-hero__copy {
		padding: 42px 0 34px;
	}

	.rope-hero h1 {
		font-size: 31px;
		line-height: 1.65;
	}

	.rope-hero__lead {
		font-size: 14px;
		line-height: 1.9;
	}

	.rope-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rope-button {
		width: 100%;
		padding-right: 16px;
		padding-left: 16px;
		text-align: center;
		white-space: normal;
	}

	.rope-hero__market {
		min-height: 390px;
	}

	.rope-metrics,
	.rope-practice__grid,
	.rope-pillars,
	.rope-sidebar,
	.rope-categories ul,
	.rope-footer__inner {
		grid-template-columns: 1fr;
	}

	.rope-pillar {
		min-height: 118px;
	}

	.rope-featured-post h2,
	.rope-practice__text h2,
	.rope-section-head h2 {
		font-size: 23px;
	}

	.rope-post-row {
		grid-template-columns: 112px 1fr;
		gap: 14px;
	}

	.rope-post-row__thumb {
		min-height: 96px;
	}

	.rope-post-row h3 {
		font-size: 15px;
	}

	.rope-post-row p,
	.rope-post-meta {
		display: none;
	}

	.rope-bookmark {
		display: none;
	}

	.rope-single__head,
	.rope-single__content,
	.rope-archive-head,
	.rope-practice__text,
	.rope-featured-post__body {
		padding: 22px;
	}

	.rope-single__head h1,
	.rope-archive-head h1 {
		font-size: 28px;
	}
}
