:root {
	--bg: #f4f9f6;
	--bg2: #eef6f1;
	--bg3: #e6f0eb00;
	--surf: #ffffff;
	--surf2: #f9fcfb;
	--line: #d1e6d9;
	--line2: #b5d3c2;
	--ink: #0f291e;
	--ink2: #2a4f3d;
	--ink3: #4f7361;
	--gold: #065f46;
	--gold-dk: #022c22;
	--gold-lt: #ecfdf5;
	--gold-pl: #a7f3d0;
	--red: #d11a41;
	--green: #10b981;
}

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

html {
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	font-family: 'Jost', system-ui, sans-serif;
	background: var(--bg);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.65;
	min-height: 100vh;
}

/* ════════════════════ MASTHEAD ════════════════════ */
.sys-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(244, 249, 246, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.sys-header-in {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sys-logomark {
	display: flex;
	align-items: baseline;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.sys-logotxt {
	font-family: 'Jost', sans-serif;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink);
	line-height: 1;
}

.sys-logotxt em {
	color: var(--gold);
	font-style: normal;
}

.sys-logosub {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
	border-left: 1px solid var(--line2);
	padding-left: 10px;
	line-height: 1.2;
}

.sys-nav-menu {
	display: flex;
	gap: 0;
}

.sys-nav-menu a {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink3);
	text-decoration: none;
	padding: 0 13px;
	height: 58px;
	display: flex;
	align-items: center;
	border-left: 1px solid var(--line);
	transition: color 0.2s, background 0.2s;
}

.sys-nav-menu a:hover,
.sys-nav-menu a.on {
	color: var(--gold);
	background: rgba(6, 95, 70, 0.04);
}

.sys-nav-menu a:last-child {
	border-right: 1px solid var(--line);
}

@media (max-width: 460px) {
	.sys-logosub {
		display: none;
	}
}

@media (max-width: 640px) {
	.sys-nav-menu a:not(:last-child) {
		display: none;
	}
}

/* ════════════════════ TICKER ════════════════════ */
.sys-marquee {
	background: var(--gold);
	padding: 5px 20px;
	overflow: hidden;
}

.sys-marquee-in {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
}

.sys-marquee-l {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sys-marquee-pt {
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	flex-shrink: 0;
}

.sys-marquee-r {
	display: flex;
	gap: 20px;
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
	.sys-marquee-r {
		display: none;
	}
}

/* ════════════════════ HERO ════════════════════ */
.sys-hero-sec {
	background: var(--bg2);
	border-bottom: 3px solid var(--gold);
	position: relative;
	overflow: hidden;
	padding: 52px 20px 44px;
}

.sys-hero-sec::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse 70% 60% at 50% 110%,
		rgba(6, 95, 70, 0.05) 0%,
		transparent 60%
	);
}

.sys-hero-bg {
	position: absolute;
	right: -4vw;
	bottom: -0.12em;
	font-family: 'Jost', serif;
	font-size: 44vw;
	font-weight: 700;
	line-height: 1;
	color: rgba(6, 95, 70, 0.02);
	pointer-events: none;
	user-select: none;
	letter-spacing: -0.05em;
}

.sys-hero-core {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.sys-bread {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.sys-bread a {
	color: var(--gold);
	text-decoration: none;
}

.sys-bread span {
	color: var(--ink3);
}

.sys-bread-sep {
	color: var(--line2);
}

.sys-bread-cat {
	display: inline-block;
	margin-bottom: 14px;
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 4px;
}

.sys-bread-l {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sys-bread-itm,
.sys-bread-dt {
	font-size: 10px;
	font-weight: 500;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.sys-bread-dt {
	flex-shrink: 0;
}

@media (max-width: 400px) {
	.sys-bread-dt {
		display: none;
	}
}

.sys-tag-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}

.sys-live-dot {
	width: 7px;
	height: 7px;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(6, 95, 70, 0.5);
	animation: sys-live-anim 2.2s ease-in-out infinite;
}

@keyframes sys-live-anim {
	0% {
		box-shadow: 0 0 0 0 rgba(6, 95, 70, 0.55);
	}
	60% {
		box-shadow: 0 0 0 7px rgba(6, 95, 70, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(6, 95, 70, 0);
	}
}

.sys-tag-txt {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink3);
}

.sys-tag-hr {
	flex: 1;
	height: 1px;
	background: var(--line);
}

.sys-hero-h1 {
	font-family: 'Jost', sans-serif;
	font-size: clamp(28px, 4.5vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 14px;
}

.sys-hero-p {
	font-size: 15px;
	color: var(--ink2);
	line-height: 1.7;
	max-width: 540px;
}

.sys-hero-p-alt {
	font-size: 12px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}
.sys-hero-p-alt strong {
	color: var(--gold);
}

.sys-head-1,
.sys-head-3 {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--ink);
}
.sys-head-1 {
	font-size: clamp(28px, 4.5vw, 54px);
}
.sys-head-2 {
	font-family: 'Jost', sans-serif;
	font-size: clamp(32px, 5.2vw, 62px);
	font-weight: 700;
	line-height: 1.1;
	color: var(--gold);
}
.sys-head-3 {
	font-size: clamp(26px, 4.2vw, 50px);
	color: var(--ink2);
}

.sys-head-sep {
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 24px;
}
.sys-head-hl {
	width: 56px;
	height: 3px;
	background: var(--gold);
	flex-shrink: 0;
	border-radius: 2px;
}
.sys-head-ln {
	flex: 1;
	height: 1px;
	background: var(--line);
}

.sys-sum-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.sys-meta-blk {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	flex-shrink: 0;
}
.sys-meta-val {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
}
.sys-meta-lbl {
	font-size: 10px;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 560px) {
	.sys-sum-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.sys-meta-blk {
		align-items: flex-start;
	}
}

/* ════════════════════ PAGE LAYOUT ════════════════════ */
.sys-grid-base {
	max-width: 1120px;
	margin: 0 auto;
	padding: 48px 20px 88px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 272px;
	gap: 44px;
	align-items: start;
}

@media (max-width: 860px) {
	.sys-grid-base {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ════════════════════ CONTENT BLOCKS ════════════════════ */
.sys-vid-wrap {
	display: flex;
	flex-direction: column;
	gap: 36px;
	margin-bottom: 36px;
}

.sys-vid-wrap-doc {
	gap: 0;
}

.sys-bhead {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.sys-bhead-ind {
	width: 3px;
	height: 20px;
	background: var(--gold);
	border-radius: 2px;
	flex-shrink: 0;
}

.sys-bhead-txt {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
}

.sys-vid-inner {
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 0 1px var(--line), 0 0 0 4px rgba(6, 95, 70, 0.04),
		0 20px 50px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: center;
}

.sys-vid-note {
	margin-top: 12px;
	text-align: center;
	font-size: 11px;
	color: var(--ink3);
}

.sys-vid-note a {
	color: var(--gold);
	text-decoration: none;
}

.sys-txt-box {
	background: var(--surf);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 28px 30px;
}

.sys-txt-box-idx {
	border-left: 4px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 20px 22px;
	margin-bottom: 36px;
}
.sys-txt-box-idx .sys-bhead-txt {
	margin-bottom: 12px;
}

.sys-txt-box h2 {
	font-family: 'Jost', sans-serif;
	font-size: clamp(18px, 2.8vw, 24px);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 14px;
	line-height: 1.2;
}

.sys-txt-box h2 em {
	color: var(--gold);
	font-style: normal;
}

.sys-txt-box p {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.75;
	margin-bottom: 14px;
}

.sys-txt-box p:last-child {
	margin-bottom: 0;
}

.sys-txt-box strong {
	color: var(--ink);
}

.sys-txt-box ol {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0;
	counter-reset: toc;
}
.sys-txt-box ol li {
	counter-increment: toc;
}
.sys-txt-box ol li::before {
	content: counter(toc) '. ';
	color: var(--gold);
	font-weight: 700;
	font-size: 12px;
}
.sys-txt-box a {
	font-size: 13.5px;
	color: var(--ink2);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.sys-txt-box a:hover {
	color: var(--gold);
}

@media (max-width: 500px) {
	.sys-txt-box {
		padding: 20px;
	}
}

/* ════════════════════ OFFER CARD ════════════════════ */
.sys-promo-card {
	display: none;
	margin-bottom: 36px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--line2);
	background: var(--surf);
	box-shadow: 0 0 0 1px rgba(6, 95, 70, 0.04), 0 15px 45px rgba(0, 0, 0, 0.08);
}

.sys-promo-top {
	background: linear-gradient(135deg, var(--gold-dk), var(--gold));
	padding: 11px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.sys-promo-tl {
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sys-promo-svg {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sys-promo-svg svg {
	width: 10px;
	height: 10px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.sys-promo-tag {
	background: #fff;
	color: var(--gold);
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 3px 10px;
	border-radius: 3px;
	flex-shrink: 0;
}

.sys-promo-in {
	padding: 28px;
}

.sys-promo-split {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 24px;
	align-items: start;
}

.sys-promo-img {
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-radius: 6px;
	padding: 12px;
	text-align: center;
	transition: border-color 0.25s;
}

.sys-promo-img:hover {
	border-color: var(--gold);
}

.sys-promo-img img {
	width: 100%;
	height: auto;
	display: block;
}

.sys-promo-h {
	font-family: 'Jost', sans-serif;
	font-size: clamp(18px, 2.5vw, 23px);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.2;
	margin-bottom: 8px;
}

.sys-promo-h em {
	color: var(--gold);
	font-style: normal;
}

.sys-promo-p {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.65;
	margin-bottom: 16px;
}

.sys-promo-ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 22px;
}

.sys-promo-li {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bg2);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 9px 12px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink);
}

.sys-promo-chk {
	width: 19px;
	height: 19px;
	border-radius: 5px;
	background: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sys-promo-chk svg {
	width: 10px;
	height: 10px;
	stroke: #fff;
	fill: none;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sys-act-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px 20px;
	background: #059669;
	color: #fff;
	font-family: 'Jost', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border-radius: 6px;
	border-bottom: 3px solid #047857;
	margin-top: 4px;
	transition: background 0.2s, transform 0.15s, border-bottom-color 0.2s;
}

.sys-act-btn:hover {
	background: #047857;
	border-bottom-color: #065f46;
	transform: translateY(-2px);
}

.sys-act-btn svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	transition: transform 0.2s;
}

.sys-act-btn:hover svg {
	transform: translateX(4px);
}

.sys-act-marks {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 14px;
}

@media (max-width: 480px) {
	.sys-promo-split {
		grid-template-columns: 1fr;
	}
}

/* ════════════════════ HIGHLIGHTS & QUOTES ════════════════════ */
.sys-q-box {
	position: relative;
	background: var(--surf);
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 22px 24px;
}

.sys-q-svg {
	font-family: 'Jost', serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--gold);
	opacity: 0.15;
	line-height: 0.7;
	position: absolute;
	top: 14px;
	left: 18px;
	user-select: none;
}

.sys-q-box text {
	font-family: 'Jost', sans-serif;
	font-size: clamp(15px, 2.2vw, 18px);
	color: var(--ink2);
	line-height: 1.6;
	padding-left: 28px;
	display: block;
}

.sys-q-box author {
	display: block;
	margin-top: 12px;
	padding-left: 28px;
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	font-style: normal;
}

.sys-q-hl {
	border-left: 4px solid var(--gold);
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-left: 3px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 14px 16px;
	margin: 16px 0;
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.7;
}

.sys-q-hl-gr {
	background: linear-gradient(135deg, rgba(6, 95, 70, 0.05) 0%, rgba(6, 95, 70, 0.01) 100%);
	padding: 26px 28px;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
}
.sys-q-hl strong {
	color: var(--ink);
}
.sys-q-hl p {
	font-family: 'Jost', sans-serif;
	font-size: clamp(15px, 2.2vw, 19px);
	color: var(--ink2);
	line-height: 1.65;
}

/* ════════════════════ CARDS & GRIDS ════════════════════ */
.sys-c-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
@media (max-width: 500px) {
	.sys-c-grid {
		grid-template-columns: 1fr;
	}
}

.sys-c-item {
	background: var(--surf2);
	border: 1px solid var(--line2);
	border-radius: 8px;
	padding: 18px 16px;
}

.sys-c-item h2 {
	font-family: 'Jost', sans-serif;
	font-size: clamp(18px, 2.8vw, 23px);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 16px;
	line-height: 1.2;
}
.sys-c-item p {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.8;
	margin-bottom: 12px;
}
.sys-c-item p:last-child {
	margin-bottom: 0;
}
.sys-c-item strong {
	color: var(--ink);
}
.sys-c-item ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 12px 0;
}
.sys-c-item ul li {
	font-size: 13.5px;
	color: var(--ink2);
	line-height: 1.7;
	padding-left: 16px;
	position: relative;
}
.sys-c-item ul li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}
.sys-c-item a {
	color: var(--gold);
	text-decoration: none;
}
.sys-c-item a:hover {
	text-decoration: underline;
}

.sys-c-svg {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: var(--gold-lt);
	border: 1px solid var(--gold-pl);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.sys-c-svg svg {
	width: 18px;
	height: 18px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sys-c-item h3 {
	font-family: 'Jost', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink);
	margin-bottom: 6px;
}
.sys-c-item p {
	font-size: 12.5px;
	color: var(--ink3);
	line-height: 1.6;
	margin: 0;
}

.sys-ct-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.sys-ct-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.sys-ct-svg {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: var(--surf2);
	border: 1px solid var(--line2);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sys-ct-svg svg {
	width: 16px;
	height: 16px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.sys-ct-svg-t {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	color: var(--gold);
	min-width: 16px;
	background: transparent;
	border: none;
	width: auto;
	height: auto;
}

.sys-ct-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
	margin-bottom: 3px;
}
.sys-c-item-lst .sys-ct-lbl {
	letter-spacing: 2px;
	color: var(--gold);
	display: block;
	margin-bottom: 8px;
}

.sys-ct-val {
	font-size: 13.5px;
	color: var(--ink);
	font-weight: 500;
}

/* ════════════════════ SIDEBAR ════════════════════ */
.sys-sd-stack {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.sys-sd-wid {
	background: var(--surf);
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.sys-sd-top {
	background: var(--surf2);
	border-bottom: 1px solid var(--line);
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sys-sd-ind {
	width: 3px;
	height: 13px;
	background: var(--gold);
	border-radius: 2px;
	flex-shrink: 0;
}

.sys-sd-txt {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ink3);
}

.sys-sd-in {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.sys-sd-in p {
	font-size: 12.5px;
	color: var(--ink3);
	line-height: 1.65;
}

.sys-sd-in hr {
	border: none;
	border-top: 1px solid var(--line);
}

.sys-sd-lnk {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink2);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	transition: color 0.2s;
}

.sys-sd-lnk:last-child {
	border-bottom: none;
}

.sys-sd-lnk:hover {
	color: var(--gold);
}

.sys-sd-arr {
	font-size: 16px;
	color: var(--line2);
	line-height: 1;
	transition: color 0.2s;
}

.sys-sd-lnk:hover .sys-sd-arr {
	color: var(--gold);
}

.sys-st-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--line);
}

.sys-st-cell {
	background: var(--bg2);
	padding: 14px 12px;
	text-align: center;
}

.sys-st-val {
	font-family: 'Jost', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	display: block;
	margin-bottom: 4px;
}

.sys-st-lbl {
	font-size: 10px;
	font-weight: 700;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
}

.sys-tr-tag {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--ink3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	padding: 7px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 500;
	transition: color 0.2s;
}
.sys-tr-tag:last-child {
	border-bottom: none;
}
.sys-tr-tag:hover {
	color: var(--gold);
}

.sys-tr-chk::before {
	content: '✓';
	color: #10b981;
	font-size: 12px;
}

/* ════════════════════ FOOTER ════════════════════ */
.sys-ftr {
	background: var(--bg2);
	border-top: 1px solid var(--line);
	padding: 48px 0 24px;
}

.sys-ftr-in {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

.sys-ftr-warn {
	font-size: 11px;
	line-height: 1.85;
	color: var(--ink3);
	padding: 14px 18px;
	background: var(--surf);
	border: 1px solid var(--line);
	border-left: 3px solid var(--line2);
	border-radius: 0 6px 6px 0;
	margin-bottom: 36px;
}

.sys-ftr-warn strong {
	color: var(--ink2);
}

.sys-ftr-cols {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 36px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 18px;
}

.sys-ftr-col h5 {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold);
	margin-bottom: 14px;
}

.sys-ftr-col address {
	font-style: normal;
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.9;
}

.sys-ftr-col address strong {
	color: var(--ink2);
}

.sys-ftr-col nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sys-ftr-col nav a {
	font-size: 12px;
	color: var(--ink3);
	text-decoration: none;
	transition: color 0.2s;
}

.sys-ftr-col nav a:hover {
	color: var(--ink);
}

.sys-ftr-bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.sys-ftr-logo {
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ink3);
}

.sys-ftr-logo em {
	color: var(--gold);
	font-style: normal;
}

.sys-ftr-cpy {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--line2);
}

@media (max-width: 640px) {
	.sys-ftr-cols {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (max-width: 380px) {
	.sys-ftr-cols {
		grid-template-columns: 1fr;
	}
}

/* ════════════════════ COOKIE BAR ════════════════════ */
.sys-notice-box {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--surf2);
	border-top: 1px solid var(--line2);
	box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.05);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sys-notice-box.sys-on {
	transform: translateY(0);
}

.sys-cook-in {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.sys-cook-txt {
	flex: 1;
	min-width: 180px;
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.6;
}

.sys-cook-txt a {
	color: var(--gold);
	font-weight: 700;
	text-decoration: none;
}

.sys-cook-acts {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.sys-cook-btn {
	padding: 8px 18px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	border-radius: 6px;
	border: 1px solid var(--line2);
	background: var(--surf);
	color: var(--ink3);
	transition: background 0.2s;
}

.sys-cook-btn:hover {
	background: var(--line);
}

.sys-cook-btn-ok {
	background: var(--gold);
	color: #fff;
	border-color: var(--gold-dk);
}

.sys-cook-btn-ok:hover {
	background: var(--gold-dk);
}

@media (max-width: 500px) {
	.sys-cook-in {
		flex-direction: column;
	}
	.sys-cook-acts {
		width: 100%;
	}
	.sys-cook-btn {
		flex: 1;
	}
}
