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

:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

body {
  font-family: var(--font-body);
}

h1, h2, h3,
.section-title,
.product-title {
  font-family: var(--font-heading);
  font-weight: 800;
}

:root {
	--font-color: white;
	--bg-color: black;
	--secondary-color: black;
	--bg2: #0b0f16;
	--glass: rgba(10, 14, 22, .55);
	--glass2: rgba(14, 18, 28, .62);
	--border: rgba(255, 255, 255, .08);
	--text: #e7eaf0;
	--muted: rgba(231, 234, 240, .70);
	--muted2: rgba(231, 234, 240, .55);
	--shadow: 0 20px 60px rgba(0, 0, 0, .55);
	--shadow2: 0 12px 40px rgba(0, 0, 0, .45);
	--radius: 14px;
	--radius2: 18px;
	--grad: linear-gradient(90deg, #8b5cf6, #22d3ee, #a78bfa);
	--grad2: linear-gradient(135deg, rgba(139, 92, 246, .25), rgba(34, 211, 238, .18));
	--btn: rgba(255, 255, 255, .08);
	--btnHover: rgba(255, 255, 255, .12);
	--focus: rgba(34, 211, 238, .35);
	--max: 1180px;
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: black;
	color: var(--text);
	overflow-x: hidden;
}

.nx-nav-wrap {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: black;
   border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
	border-bottom-style: solid;
	border-width: 2px;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nx-nav {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}

.logo {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background:
		radial-gradient(circle at 30% 30%, rgba(34, 211, 238, .85), transparent 55%),
		radial-gradient(circle at 70% 60%, rgba(139, 92, 246, .85), transparent 55%),
		linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	position: relative;
	overflow: hidden;
}

.logo:after {
	content: "";
	position: absolute;
	inset: -40%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
	transform: rotate(25deg) translateX(-30%);
	animation: shimmer 4.5s infinite;
	opacity: .8;
}

@keyframes shimmer {
	0% {
		transform: rotate(25deg) translateX(-55%)
	}

	55% {
		transform: rotate(25deg) translateX(55%)
	}

	100% {
		transform: rotate(25deg) translateX(55%)
	}
}

.brand span {
	font-weight: 700;
	letter-spacing: .2px;
}

.badge {
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(34, 211, 238, .25);
	color: rgba(34, 211, 238, .95);
	background: rgba(34, 211, 238, .08);
	margin-left: 6px;
}

.nx-nav_ left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
}

.nx-nav-item {
	position: relative;
}

.nx-nav-btn {
	border: 1px solid transparent;
	background: transparent;
	color: var(--muted);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .15s ease;
	user-select: none;
}

.nx-nav-btn:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.nx-nav-btn[aria-expanded="true"] {
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border-color: rgba(34, 211, 238, .18);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
}

.chev {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 0;
	margin-left: auto;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02) 62%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 8px 18px rgba(0, 0, 0, .20);
	opacity: .96;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1), background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.chev::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-50%, -60%) rotate(45deg);
	transform-origin: center;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1);
}

.nx-nav-btn:hover .chev,
.nx-nav-btn:focus-visible .chev,
.nx-nav-btn[aria-expanded="true"] .chev {
	background: radial-gradient(circle at 30% 30%, rgba(163, 230, 53, .22), rgba(99, 102, 241, .10) 68%, rgba(255, 255, 255, .03));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 10px 22px rgba(0, 0, 0, .24), 0 0 0 1px rgba(163, 230, 53, .10);
}

.nx-nav-btn[aria-expanded="true"] .chev::before {
	transform: translate(-50%, -40%) rotate(225deg);
}

.nx-nav-right {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 240px;
	justify-content: flex-end;
}

.pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .05);
	color: var(--muted);
	font-size: 13px;
	cursor: pointer;
	transition: .15s ease;
}

.pill:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(34, 211, 238, .9);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, .12);
}

.link {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	transition: .15s ease;
	border: 1px solid transparent;
}

.link:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.cta {
	text-decoration: none;
	color: #061018;
	font-weight: 800;
	font-size: 14px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--grad);
	box-shadow: 0 16px 40px rgba(34, 211, 238, .08), 0 16px 40px rgba(139, 92, 246, .10);
	transition: transform .15s ease, filter .15s ease;
	white-space: nowrap;
}

.cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.cta:active {
	transform: translateY(0px);
}

.menu {
	position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 820px;
    max-width: calc(100vw - 28px);
    background: linear-gradient(181deg, rgb(0 0 0), rgb(0 0 0));
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    transform-origin: top left;
    transform: translateY(6px) scale(.98);
    opacity: 0;
    transition: .16s ease;
    overflow: hidden;
    border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
    border-bottom-style: solid;
    border-width: 2px;

}

.menu.open {
	display: block;
	opacity: 1;
	transform: translateY(0) scale(1);

}

.menu:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 300px at 10% 0%, rgba(34, 211, 238, .13), transparent 60%),
		radial-gradient(800px 300px at 90% 0%, rgba(139, 92, 246, .14), transparent 60%);
	pointer-events: none;
}

.menu-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 14px;
}

.menu-col {
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	padding: 14px;
	overflow: hidden;
}

.menu-title {
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .2px;
	color: rgba(231, 234, 240, .90);
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-title small {
	font-weight: 700;
	font-size: 12px;
	color: rgba(34, 211, 238, .85);
	border: 1px solid rgba(34, 211, 238, .22);
	background: rgba(34, 211, 238, .08);
	padding: 4px 8px;
	border-radius: 999px;
}

.menu-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.menu-card {
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .12);
	transition: .15s ease;
	min-height: 66px;
}

.menu-card:hover {
	border-color: rgba(34, 211, 238, .22);
	background: rgba(255, 255, 255, .06);
	transform: translateY(-1px);
}

.ic {
	width: 34px;
	height: 34px;
	border-radius: 3px;
	background: var(--grad2);
	flex: 0 0 auto;
}

.menu-card b {
	display: block;
	color: var(--text);
	font-size: 13px;
	margin-bottom: 2px;
	letter-spacing: .1px;
}

.menu-card p {
	margin: 0;
	color: var(--muted2);
	font-size: 12px;
	line-height: 1.25;
}

.menu-side {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.side-hero {
	border-radius: 14px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .10);
	background:
		radial-gradient(420px 200px at 20% 0%, rgba(34, 211, 238, .18), transparent 60%),
		radial-gradient(420px 200px at 90% 0%, rgba(139, 92, 246, .22), transparent 60%),
		rgba(255, 255, 255, .04);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	overflow: hidden;
	position: relative;
}

.side-hero h4 {
	margin: 0 0 6px 0;
	font-size: 13px;
	letter-spacing: .2px;
}

.side-hero p {
	margin: 0 0 10px 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.35;
}

.side-hero a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 9px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	transition: .15s ease;
}

.side-hero a:hover {
	background: rgba(255, 255, 255, .12);
}

.tiny {
	display: flex;
	gap: 10px;
}

.tiny a {
	flex: 1;
	text-decoration: none;
	color: var(--muted);
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	transition: .15s ease;
	text-align: center;
}

.tiny a:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
	border-color: rgba(34, 211, 238, .18);
}

.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 0px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .05);
	cursor: pointer;
	transition: .15s ease;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
}

.hamburger:hover {
	background: rgba(255, 255, 255, .08);
}

.hamburger span {
	width: 18px;
	height: 2px;
	background: rgba(231, 234, 240, .85);
	border-radius: 99px;
	transition: .15s ease;
}

.overlay {
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
	transition: .18s ease;
	z-index: 60;
}

.overlay.open {
	opacity: 1;
	pointer-events: auto;
}

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(420px, 92vw);
	border-left: 1px solid rgba(255, 255, 255, .10);
	box-shadow: var(--shadow);
	transform: translateX(110%);
	transition: .2s ease;
	z-index: 70;
	display: flex;
	flex-direction: column;
}

.drawer.open {
	transform: translateX(0);
}

.drawer-top {
	padding: 14px 14px 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-top .brand {
	min-width: 0;
}

.close {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
	transition: .15s ease;
	color: var(--text);
	font-weight: 900;
	font-size: 16px;
}

.close:hover {
	background: rgb(255 255 255);
}

.drawer-body {
	padding: 12px 14px 18px;
	overflow: auto;
}

.drawer-body {
	padding-top: 0px;
	padding-right: 14px;
	padding-bottom: 18px;
	padding-left: 14px;
	overflow: auto;
}

.m-section {
	margin: 10px 0 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	overflow: hidden;
}

.m-head {
	width: 100%;
	padding: 12px 12px;
	border: 0;
	background: transparent;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 800;
	font-size: 13px;
}

.m-head span {
	color: var(--muted);
	font-weight: 700;
	font-size: 12px;
}

.m-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.m-panel.open {
	max-height: 560px;
}

.m-links {
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap: 8px;
}

.m-links a {
	display: flex;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .10);
	padding: 10px;
	border-radius: 12px;
	transition: .15s ease;
}

.m-links a:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(34, 211, 238, .18);
}

.m-links a b {
	font-size: 13px;
}

.m-links a small {
	color: var(--muted2);
	display: block;
	margin-top: 2px;
}

.drawer-cta {
	margin-top: 12px;
	display: flex;
	gap: 10px;
}

.drawer-cta a {
	flex: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 900;
	padding: 12px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	color: var(--text);
	transition: .15s ease;
}

.drawer-cta a:hover {
	background: rgba(255, 255, 255, .10);
}

.drawer-cta a.primary {
	border: 0;
	background: var(--grad);
	color: #061018;
}

@media (max-width: 1024px) {
	.nx-nav-links {
		display: none;
	}

	.nx-nav-right .pill,
	.nx-nav-right .link {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.nx-nav-right {
		min-width: auto;
	}

	.brand {
		min-width: auto;
	}
}

.hero {
	max-width: var(--max);
	margin: 40px auto 0;
	padding: 0 18px 80px;
}

.hero h1 {
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.05;
	margin: 30px 0 10px;
	letter-spacing: -.02em;
}

.hero p {
	margin: 0;
	color: var(--muted);
	max-width: 70ch;
	line-height: 1.5;
}

.card-demo {
	margin-top: 22px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .04);
	border-radius: 18px;
	padding: 18px;
	box-shadow: var(--shadow2);
}

.vc-user-icon {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-user-icon i {
	font-size: 20px;
	line-height: 1;
}

.tx-header {
	background: linear-gradient(90deg, #ffcc00, #ff5a3c);
	color: #000;
	font-weight: 700;
	font-size: 20px;
	padding: 14px 20px;
	border-radius: 14px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.tx-header::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 20%,
		rgba(255, 255, 255, .15) 40%,
		rgba(255, 255, 255, .35) 50%,
		rgba(255, 255, 255, .15) 60%,
		transparent 80%
	);
	pointer-events: none;
	animation: txShine 4s ease-in-out infinite;
}

@keyframes txShine {
	0%   { left: -100%; }
	60%  { left: 180%; }
	100% { left: 180%; }
}

.rd-section {
	max-width: var(--max);
	margin: 0 auto;
	padding: 36px 18px 80px;
	position: relative;
}

.rd-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-radius: 22px;
	padding: 32px 38px 28px;
	margin-bottom: 28px;
	color: #fff;
	background:
		radial-gradient(circle at 8% 0%, rgba(255, 204, 0, 0.16), transparent 34%),
		radial-gradient(circle at 92% 30%, rgba(124, 58, 237, 0.24), transparent 38%),
		linear-gradient(135deg, rgba(22, 22, 24, 0.96) 0%, rgba(12, 14, 22, 0.96) 100%);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.rd-hero::before {
	content: "";
	position: absolute;
	inset: -35% auto -35% -40%;
	z-index: 0;
	width: 38%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), rgba(255,255,255,0.32), rgba(255,255,255,0.08), transparent);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-130%) rotate(18deg);
	animation: bxHeroShine 5.5s ease-in-out infinite;
}

.rd-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	background:
		linear-gradient(90deg, transparent, rgba(255,204,0,0.18), transparent) top / 100% 1px no-repeat,
		linear-gradient(180deg, rgba(255,255,255,0.04), transparent 44%);
	opacity: 0.95;
	pointer-events: none;
}

.rd-hero > * { position: relative; z-index: 1; }

.rd-hero-row {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.rd-hero-icon {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #170b00;
	background: linear-gradient(135deg, #ffcc00, #ff5a3c);
	box-shadow: 0 14px 30px rgba(255, 90, 60, 0.32), inset 0 1px 0 rgba(255,255,255,0.32);
	font-size: 24px;
}

.rd-hero-text { flex: 1 1 260px; min-width: 0; }

.rd-hero-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(18px, 2.8vw, 28px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1.25;
}

.rd-hero-sub {
	margin: 6px 0 0;
	color: rgba(255,255,255,.60);
	font-size: 14px;
	line-height: 1.5;
}

.rd-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	color: rgba(255,255,255,.82);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.rd-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 24px;
	align-items: start;
}

.rd-article {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(20,20,24,.92), rgba(10,10,12,.96));
	border: 1px solid rgba(255,255,255,.07);
	box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.rd-media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #0d0d10;
}

.rd-media img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .5s ease;
}

.rd-article:hover .rd-media img {
	transform: scale(1.03);
}

.rd-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.60) 100%);
	pointer-events: none;
}

.rd-body {
	padding: 28px 30px 36px;
}

.rd-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 16px;
	font-size: 12px;
	color: var(--muted2);
	flex-wrap: wrap;
}

.rd-breadcrumb a {
	color: var(--muted);
	text-decoration: none;
	transition: color .15s;
}

.rd-breadcrumb a:hover { color: #ffcc00; }
.rd-breadcrumb .sep { opacity: .4; }
.rd-breadcrumb .cur { color: rgba(255,255,255,.5); }

.rd-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(0,0,0,.45);
	border: 1px solid rgba(255,204,0,.35);
	color: #ffcc00;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.rd-title {
	margin: 0 0 16px;
	font-family: var(--font-heading);
	font-size: clamp(20px, 3vw, 32px);
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
	letter-spacing: -.02em;
}

.rd-divider {
	width: 48px;
	height: 3px;
	border-radius: 99px;
	background: linear-gradient(90deg, #ffcc00, #ff5a3c);
	margin-bottom: 24px;
}

.rd-prose {
	color: rgba(231,234,240,.78);
	font-size: 15px;
	line-height: 1.82;
}

.rd-prose h1,.rd-prose h2,.rd-prose h3,
.rd-prose h4,.rd-prose h5,.rd-prose h6 {
	color: var(--text);
	font-family: var(--font-heading);
	margin-top: 1.6em;
	margin-bottom: .6em;
}

.rd-prose p { margin-bottom: 1em; }

.rd-prose a {
	color: #ffcc00;
	text-decoration: none;
	text-underline-offset: 3px;
}

.rd-prose img {
	max-width: 100%;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.08);
	margin: .5em 0;
}

.rd-prose blockquote {
	border-left: 3px solid #ffcc00;
	margin: 1.4em 0;
	padding: 12px 18px;
	background: rgba(255,204,0,.06);
	border-radius: 0 10px 10px 0;
	color: var(--muted2);
	font-style: italic;
}

.rd-prose ul,.rd-prose ol { padding-left: 1.4em; margin-bottom: 1em; }
.rd-prose li { margin-bottom: .4em; }

.rd-prose table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
	font-size: 14px;
}

.rd-prose th,.rd-prose td {
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,.08);
	text-align: left;
}

.rd-prose th {
	background: rgba(255,255,255,.06);
	color: var(--text);
	font-weight: 700;
}

.rd-sidebar {
	position: sticky;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rd-sb-card {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.07);
	background: linear-gradient(180deg, rgba(20,20,24,.92), rgba(10,10,12,.96));
	box-shadow: 0 8px 28px rgba(0,0,0,.38);
}

.rd-sb-head {
	padding: 14px 18px 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid rgba(255,255,255,.07);
	background:
		radial-gradient(circle at 10% 50%, rgba(255,204,0,.10), transparent 55%),
		rgba(255,255,255,.03);
}

.rd-sb-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #ffcc00, #ff5a3c);
	color: #170b00;
	font-size: 14px;
	flex: 0 0 auto;
	box-shadow: 0 6px 16px rgba(255,90,60,.28);
}

.rd-sb-title {
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .2px;
	color: var(--text);
}

.rd-sb-list {
	list-style: none;
	margin: 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rd-sb-item a {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	color: var(--muted);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	border: 1px solid transparent;
	transition: all .18s ease;
	line-height: 1.4;
}

.rd-sb-item a::before {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255,204,0,.5);
	flex: 0 0 4px;
	margin-top: 5px;
	transition: background .18s;
}

.rd-sb-item a:hover {
	color: var(--text);
	background: rgba(255,255,255,.05);
	border-color: rgba(255,204,0,.22);
	padding-left: 14px;
}

.rd-sb-item a:hover::before { background: #ffcc00; }

@media (max-width: 1024px) {
	.rd-section { padding: 28px 20px 64px; }
	.rd-layout { grid-template-columns: 1fr 280px; gap: 20px; }
	.rd-hero { padding: 28px 28px 24px; }
	.rd-body { padding: 22px 22px 28px; }
}

@media (max-width: 768px) {
	.rd-section { padding: 22px 16px 52px; }
	.rd-layout { grid-template-columns: 1fr; gap: 20px; }
	.rd-sidebar { position: static; }
	.rd-hero { padding: 22px 20px 20px; border-radius: 18px; }
	.rd-hero-icon { width: 44px; height: 44px; flex-basis: 44px; font-size: 20px; border-radius: 12px; }
	.rd-hero-title { font-size: 16px; }
	.rd-hero-sub { font-size: 13px; }
	.rd-hero-badge { font-size: 11px; padding: 7px 12px; }
	.rd-body { padding: 18px 18px 24px; }
	.rd-title { font-size: 20px; }
	.rd-prose { font-size: 14px; line-height: 1.72; }
}

@media (max-width: 480px) {
	.rd-section { padding: 18px 14px 48px; }
	.rd-hero { padding: 18px 16px 16px; border-radius: 16px; }
	.rd-hero-row { gap: 12px; }
	.rd-hero-title { font-size: 15px; }
	.rd-body { padding: 16px 16px 22px; }
	.rd-title { font-size: 18px; }
}
