


:root {
	--bg: #FFFFFF;
	--surface: #F7F8FB;
	--sidebar: #0E1B33;
	--accent1: #2F5FE0;
	--accent2: #8B2FD9;
	--success: #22A06B;
	--danger: #D93636;
	--text1: #0E1B33;
	--text2: #5C6478;
	--border: #E5E7EF;
	--gradient: linear-gradient(135deg, var(--accent1), var(--accent2));
	--radius: 4px;
	
	--radius-card: 14px;
	--font-display: 'Space Grotesk', sans-serif;
	--font-body: 'Manrope', sans-serif;
}

[data-theme="dark"] {
	--bg: #0E1420;
	--surface: #171F30;
	--sidebar: #080D17;
	--accent1: #5B85FF;
	--accent2: #B266F0;
	--success: #4ADE9A;
	--danger: #F87171;
	--text1: #F2F4F8;
	--text2: #9AA3B8;
	--border: #2A3348;
}


* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; max-width: 100%; }

body {
	
	max-width: 100%;
	overflow-x: hidden;
	font-family: var(--font-body);
	font-weight: 400;
	background: var(--bg);
	color: var(--text1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; }
h1 { font-size: 30px; }
h2 { font-size: 23px; }
h3 { font-size: 17px; }

a { color: var(--accent1); text-decoration: none; }
img { max-width: 100%; display: block; }


.container { width: 100%; margin: 0 auto; padding: 0 52px; }
@media (max-width: 900px) { .container { padding: 0 28px; } }
@media (max-width: 640px) { .container { padding: 0 16px; } }


.container-fluid { width: 100%; padding: 0 28px; }
@media (max-width: 640px) { .container-fluid { padding: 0 16px; } }


.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity .15s, background .15s;
}
.btn:hover { opacity: .9; }
.btn-gradient { background: var(--gradient); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text1); }
.btn-ghost { background: transparent; color: var(--text1); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-block { width: 100%; }
.btn-success { background: var(--success); color: #fff; }


.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	padding: 16px;
}


.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
}
.site-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	gap: 20px;
}
.site-header .logo img { height: 44px; width: auto; }
.site-nav { display: flex; gap: 22px; }
.site-nav a { color: var(--text2); font-size: 14px; font-weight: 500; }
.site-nav a:hover, .site-nav a.active { color: var(--text1); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--text2);
	font-size: 17px;
}

.mobile-menu-btn { display: none; }


.user-menu { position: relative; }
.user-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px 5px 6px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: transparent;
	color: var(--text1);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}
.user-chip:hover { border-color: var(--accent1); }
.user-chip .chip-avatar {
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}
.user-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 180px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 5px;
	z-index: 60;
}
.user-dropdown a {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 11px;
	border-radius: var(--radius);
	color: var(--text1);
	font-size: 13.5px;
	font-weight: 500;
	white-space: nowrap;
}
.user-dropdown a:hover { background: var(--surface); }
.user-dropdown a.logout {
	color: var(--danger);
	border-top: 1px solid var(--border);
	border-radius: 0 0 var(--radius) var(--radius);
	margin-top: 4px;
}

.user-menu.open .user-dropdown { display: block; }


.confirm-modal-overlay {
	display: none;
	position: fixed; inset: 0;
	background: rgba(14, 27, 51, 0.55);
	align-items: center; justify-content: center;
	padding: 20px;
	z-index: 300;
}
.confirm-modal-overlay.open { display: flex; }
.confirm-modal-box {
	background: var(--bg);
	border-radius: var(--radius-card);
	border: 1px solid var(--border);
	width: 100%;
	max-width: 360px;
	padding: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
	text-align: center;
}
.confirm-modal-box p { color: var(--text1); font-size: 14.5px; margin-bottom: 18px; }
.confirm-modal-actions { display: flex; gap: 10px; justify-content: center; }
.confirm-modal-actions .btn { flex: 1; }


.campaign-popup-overlay {
	display: none;
	position: fixed; inset: 0;
	background: rgba(14, 27, 51, 0.6);
	align-items: center; justify-content: center;
	padding: 20px;
	z-index: 400;
}
.campaign-popup-overlay.open { display: flex; }
.campaign-popup-box {
	position: relative;
	background: var(--bg);
	border-radius: var(--radius-card);
	border: 1px solid var(--border);
	width: 100%;
	max-width: 400px;
	padding: 28px 24px 24px;
	box-shadow: 0 24px 70px rgba(0,0,0,.4);
	text-align: center;
}
.campaign-popup-close {
	position: absolute; top: 10px; right: 10px;
	width: 30px; height: 30px;
	display: flex; align-items: center; justify-content: center;
	border: none; border-radius: 50%;
	background: transparent; color: var(--text2);
	cursor: pointer; font-size: 16px;
}
.campaign-popup-close:hover { background: var(--border); color: var(--text1); }
.campaign-popup-badge {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--gradient); color: #fff;
	font-size: 12px; font-weight: 700;
	padding: 5px 12px; border-radius: 999px;
	margin-bottom: 14px;
}
.campaign-popup-box h3 { font-size: 19px; margin-bottom: 8px; color: var(--text1); }
.campaign-popup-box p { font-size: 14px; color: var(--text2); margin-bottom: 18px; }


.cookie-consent-bar {
	position: fixed;
	left: 16px; right: 16px; bottom: 16px;
	z-index: 500;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	box-shadow: 0 20px 60px rgba(0,0,0,.35);
	padding: 16px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	max-width: 720px;
	margin: 0 auto;
}
.cookie-consent-bar p { flex: 1 1 320px; font-size: 13px; color: var(--text2); margin: 0; }
.cookie-consent-bar a { color: var(--accent1); }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-consent-actions .btn { padding: 8px 14px; font-size: 13px; white-space: nowrap; }

body.has-cookie-consent { padding-bottom: 96px; }


.hero {
	position: relative;
	
	padding: 18px 52px 0;
}
.hero .hero-media {
	height: 440px;
	overflow: hidden;
	background: var(--gradient); 
	position: relative;
	border-radius: var(--radius-card);
	
	animation: hero-slide-in .8s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes hero-slide-in {
	from { opacity: 0; transform: translateX(70px); }
	to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	.hero .hero-media, .hero .hero-card { animation: none; }
}
.hero .hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center; 
}
.hero .hero-media .media-accent {
	
	position: absolute;
	right: 6%;
	bottom: 0;
	width: 240px;
	height: 62%;
	background: var(--success);
	opacity: .8;
}
.hero .card-wrap {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.hero .hero-card {
	position: absolute;
	left: 32px; 
	bottom: 64px;
	z-index: 2;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	padding: 26px 28px;
	max-width: 430px;
	
	animation: hero-slide-in .8s .15s cubic-bezier(.16, 1, .3, 1) both;
}

@media (max-width: 900px) { .hero { padding: 14px 28px 0; } .hero .hero-card { left: 24px; } }
@media (max-width: 640px) { .hero { padding: 10px 16px 0; } }
.hero .hero-card h1 { font-size: 30px; }
.hero .hero-card .sub { margin-top: 10px; font-size: 14.5px; color: var(--text2); }
.hero .hero-search { display: flex; gap: 0; margin-top: 18px; position: relative; }
.hero .hero-search input {
	flex: 1;
	padding: 12px 44px 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--text1);
	font-family: var(--font-body);
	font-size: 14px;
}
.hero .hero-search input:focus { outline: none; border-color: var(--accent1); }
.hero .hero-search button {
	position: absolute;
	right: 6px; top: 50%;
	transform: translateY(-50%);
	background: none; border: none; cursor: pointer;
	color: var(--text2); font-size: 19px;
	display: flex;
	padding: 6px;
}


.hero-carousel { position: relative; width: 100%; height: 100%; }
.hero-track {
	display: flex; height: 100%; transition: transform .5s ease; will-change: transform;
	touch-action: pan-y; cursor: grab; user-select: none;
	-webkit-user-select: none; -webkit-touch-callout: none;
}
.hero-track:active { cursor: grabbing; }
.hero-track a, .hero-track img { -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; }
.hero-slide { flex: 0 0 100%; height: 100%; display: block; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero-carousel .hero-dots {
	position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
	display: flex; justify-content: center; gap: 8px; margin: 0;
}
.hero-carousel .hero-dots .t-dot { border-color: rgba(255,255,255,.6); }
.hero-carousel .hero-dots .t-dot.active { background: #fff; border-color: #fff; }

@media (max-width: 768px) {
	
	.hero .hero-media { height: 250px; }
	.hero .hero-card {
		position: static;
		max-width: none;
		border: none;
		padding: 20px 0 4px;
	}
	.hero .hero-card h1 { font-size: 23px; }
	
}


.bento {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.9fr;
	grid-template-rows: repeat(2, 110px);
	gap: 12px;
	margin: 26px 0;
}
.bento-tile {
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	padding: 14px;
	display: flex;
	align-items: flex-end;
	color: #fff;
}
.bento-tile.large { grid-row: span 2; }
.bento-tile .tile-icon {
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 64px;
	opacity: .18;
	line-height: 1;
}
.bento-tile .tile-label {
	background: var(--bg);
	color: var(--text1);
	border-radius: var(--radius);
	padding: 7px 11px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}
.bento-tile .tile-label small { display: block; color: var(--text2); font-weight: 400; font-size: 11.5px; }

.bento-tile:nth-child(4n+1) { background: linear-gradient(135deg, var(--accent1), var(--accent2)); }
.bento-tile:nth-child(4n+2) { background: linear-gradient(135deg, var(--accent2), var(--accent1)); }
.bento-tile:nth-child(4n+3) { background: linear-gradient(160deg, var(--accent1), var(--success)); }
.bento-tile:nth-child(4n+4) { background: linear-gradient(160deg, var(--sidebar), var(--accent1)); }

.bento-tile.has-image { background-size: cover !important; background-position: center !important; }

.bento-tile.has-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover !important;
	background-position: center !important;
	transition: transform .5s ease;
}
.bento-tile.has-image:hover::before { transform: scale(1.08); }
.bento-tile.has-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14,27,51,.05), rgba(14,27,51,.45));
}
.bento-tile.has-image .tile-label { position: relative; z-index: 1; }


.section { margin: 10px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.section-head .more-link { font-size: 13.5px; }


.legal-content { max-width: 700px; margin: 0 auto; color: var(--text2); }
.legal-content > p:first-child { margin-top: 0; }
.legal-content h3 {
	margin: 34px 0 12px; padding-top: 22px; border-top: 1px solid var(--border);
	color: var(--text1); font-size: 17px;
}
.legal-content h3:first-of-type { margin-top: 22px; padding-top: 0; border-top: none; }
.legal-content p { margin: 0 0 14px; }
.legal-content strong { color: var(--text1); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 6px 0 22px; font-size: 13.5px; }
.legal-content th, .legal-content td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-content th { font-family: var(--font-display); font-weight: 600; color: var(--text1); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.legal-content .legal-meta { font-size: 12.5px; color: var(--text2); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
@media (max-width: 640px) {
	.legal-content table { font-size: 12.5px; display: block; overflow-x: auto; white-space: nowrap; }
	.legal-content th, .legal-content td { padding: 7px 9px; }
}


.about-content p:last-of-type { margin-bottom: 26px; }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 480px) {
	.about-cta { flex-direction: column; }
	.about-cta .btn { width: 100%; }
}


.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

@media (min-width: 1400px) { .course-grid { grid-template-columns: repeat(4, 1fr); } }
.course-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color .15s;
}
.course-card:hover { border-color: var(--accent1); }
.course-card[data-href] { cursor: pointer; }
.course-card .thumb {
	position: relative;
	height: 140px;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.65);
	font-size: 40px;
}
.course-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }

.course-card .thumb { overflow: hidden; }
.course-card:hover .thumb img { transform: scale(1.08); }
.course-card .body { padding: 13px 14px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.course-card .cat-chip {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text1);
}

.live-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: var(--radius);
	background: linear-gradient(90deg, #ef4444, #dc2626);
	color: #fff;
}
.live-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	animation: academy-live-pulse 1.6s ease-in-out infinite;
}
@keyframes academy-live-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .35; }
}


.share-menu { margin-top: 14px; display: inline-block; }
.share-menu .share-toggle { display: inline-flex; align-items: center; gap: 6px; }

.share-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.share-modal[hidden] { display: none; }
.share-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.share-modal-box {
	position: relative; z-index: 1;
	width: 100%; max-width: 420px;
	background: var(--surface); border: 1px solid var(--border);
	border-radius: var(--radius-card, 14px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
	padding: 20px;
}
.share-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.share-modal-head span { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.share-modal-close { background: none; border: none; cursor: pointer; color: var(--text2); font-size: 20px; display: flex; }
.share-modal-close:hover { color: var(--text1); }

.share-modal-networks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 18px; }
.share-modal-networks a {
	display: flex; flex-direction: column; align-items: center; gap: 7px;
	color: var(--text2); font-size: 11px; text-align: center; min-width: 0;
}
.share-modal-networks a:hover { color: var(--accent1); }
.share-modal-networks .smn-icon {
	width: 46px; height: 46px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: var(--bg); border: 1px solid var(--border); font-size: 20px;
	transition: border-color .15s;
}
.share-modal-networks a:hover .smn-icon { border-color: var(--accent1); }
.share-modal-networks .smn-label { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 480px) {
	.share-modal-box { padding: 16px; }
	.share-modal-networks { gap: 5px; }
	.share-modal-networks .smn-icon { width: 42px; height: 42px; font-size: 18px; }
	.share-modal-networks a { font-size: 10px; gap: 5px; }
}
.share-modal-link { display: flex; gap: 8px; }
.share-link-input {
	flex: 1; min-width: 0;
	padding: 10px 12px;
	border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--bg); color: var(--text2);
	font-size: 12.5px; font-family: monospace;
}
.share-modal-link .share-copy { white-space: nowrap; flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px; }
body.share-modal-open { overflow: hidden; }


.cert-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: var(--radius);
	background: linear-gradient(90deg, rgba(34,197,94,.16), rgba(16,185,129,.16));
	color: #16a34a;
	border: 1px solid rgba(34,197,94,.35);
	white-space: nowrap;
}
.cert-badge .ti { font-size: 13px; }

.offer-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: var(--radius);
	background: var(--gradient);
	color: #fff;
	white-space: nowrap;
}
.price-original { text-decoration: line-through; opacity: .6; font-size: .8em; font-weight: 500; margin-right: 6px; }
.course-card h3 { font-size: 15px; }
.course-card h3 a { color: var(--text1); }
.course-card .price { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--accent1); margin-top: auto; }
.course-card .meta-row {
	display: flex;
	border-top: 1px solid var(--border);
	font-size: 11.5px;
	color: var(--text2);
}
.course-card .meta-row span {
	flex: 1;
	min-width: 0;
	padding: 8px 6px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.course-card .meta-row span + span { border-left: 1px solid var(--border); }
.course-card .meta-row a { color: inherit; text-decoration: none; }
.course-card .meta-row a:hover { color: var(--accent1); }


.card-skeleton { pointer-events: none; }
.card-skeleton .thumb { background: none; }
.skel-block {
	background: linear-gradient(90deg, var(--border) 25%, color-mix(in srgb, var(--border) 50%, var(--surface)) 50%, var(--border) 75%);
	background-size: 200% 100%;
	animation: academy-shimmer 1.4s ease-in-out infinite;
	border-radius: var(--radius);
}
.card-skeleton .thumb .skel-block { position: absolute; inset: 0; border-radius: 0; }
.card-skeleton .skel-chip { width: 70px; height: 18px; }
.card-skeleton .skel-title { width: 85%; height: 16px; margin-top: 8px; }
.card-skeleton .skel-price { width: 50%; height: 18px; margin-top: 10px; }
.card-skeleton .skel-meta { height: 34px; margin: 0; border-radius: 0; }
@keyframes academy-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}


.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-card { padding: 20px; }
.compare-card.highlight { border: 2px solid var(--accent1); }
.compare-card h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.compare-card li { display: flex; gap: 8px; align-items: flex-start; }
.compare-card li .ti { flex-shrink: 0; margin-top: 2px; }
.li-yes { color: var(--success); }
.li-no { color: var(--text2); }


.verify-widget { padding: 20px;}
.verify-widget form { display: flex; gap: 10px; margin-top: 12px; }
.verify-widget input {
	flex: 1;
	padding: 10px 13px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--text1);
	font-family: monospace;
	font-size: 14px;
}
.verify-result { margin-top: 13px; padding: 13px; border-radius: var(--radius); font-size: 13.5px; display: none; }
.verify-result.ok { display: block; border: 1px solid var(--success); color: var(--success); }
.verify-result.bad { display: block; border: 1px solid var(--danger); color: var(--danger); }


.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-card { text-align: center; padding: 20px 14px; }
.step-card .num {
	width: 34px; height: 34px;
	margin: 0 auto 10px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700;
}
.step-card p { font-size: 13px; color: var(--text2); margin-top: 4px; }


.mentor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mentor-card { text-align: center; padding: 20px 12px; }
.mentor-card .avatar {
	width: 68px; height: 68px;
	margin: 0 auto 10px;
	border-radius: 50%;
	background: var(--gradient);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; font-size: 22px;
}
.mentor-card .name { font-weight: 600; font-size: 14px; color: var(--text1); }
.mentor-card .title { font-size: 12px; color: var(--text2); }


.testimonial-carousel,
.mentor-carousel { position: relative; overflow: hidden; padding: 4px 0; }
.testimonial-carousel::before,
.testimonial-carousel::after,
.mentor-carousel::before,
.mentor-carousel::after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 0;
	z-index: 1;
	pointer-events: none;
}
.testimonial-carousel::before,
.mentor-carousel::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.testimonial-carousel::after,
.mentor-carousel::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
@media (min-width: 768px) {
	.testimonial-carousel::before,
	.testimonial-carousel::after,
	.mentor-carousel::before,
	.mentor-carousel::after { width: 140px; }
}
.t-track,
.m-track {
	display: flex; gap: 16px; transition: transform .5s ease; will-change: transform;
	touch-action: pan-y; cursor: grab; user-select: none;
	-webkit-user-select: none; -webkit-touch-callout: none;
}
.t-track:active,
.m-track:active { cursor: grabbing; }

.m-track a,
.m-track img { -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; }
.testimonial-item { flex: 0 0 44%; text-align: center; }
@media (max-width: 768px) { .testimonial-item { flex-basis: 88%; } }
.mentor-carousel .mentor-card { flex: 0 0 23%; transition: border-color .3s, transform .3s; }
.mentor-carousel .mentor-card.center { border-color: var(--accent1); transform: scale(1.03); }
@media (max-width: 900px) { .mentor-carousel .mentor-card { flex-basis: 31%; } }
@media (max-width: 640px) { .mentor-carousel .mentor-card { flex-basis: 48%; } }
.testimonial-item .t-avatar {
	width: 62px; height: 62px;
	margin: 0 auto 8px;
	border-radius: 50%;
	border: 1px solid var(--border);
	padding: 4px;
	background: var(--gradient);
	background-clip: content-box;
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; font-size: 20px;
}
.testimonial-item .t-name { font-weight: 600; font-size: 14px; color: var(--text1); }
.testimonial-item .t-role { font-size: 12.5px; color: var(--text2); margin-bottom: 10px; }
.testimonial-item .t-rating { color: var(--accent1); font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.testimonial-item.center .t-rating { color: #fff; }
.testimonial-item .t-text {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	padding: 16px 18px;
	font-size: 13.5px;
	color: var(--text1);
	transition: background .4s, color .4s, border-color .4s;
}
.testimonial-item.center .t-text { background: var(--gradient); color: #fff; border-color: transparent; }
.t-dots,
.m-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.t-dot {
	width: 12px; height: 12px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background .3s, border-color .3s;
}
.t-dot.active { background: var(--accent1); border-color: var(--accent1); }


.cta-band {
	background: var(--gradient);
	border-radius: var(--radius-card);
	padding: 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: #fff;
	margin: 44px 0;
}
.cta-band h2 { color: #fff; }
.cta-band .btn { background: #fff; color: var(--accent1); }

.cta-band.has-image { position: relative; }
.cta-band.has-image::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-card);
	background: linear-gradient(135deg, rgba(14,27,51,.55), rgba(14,27,51,.35));
}
.cta-band.has-image h2, .cta-band.has-image .btn { position: relative; z-index: 1; }


.site-footer {
	background: var(--sidebar);
	color: #9AA3B8;
	padding: 44px 0 26px;
	margin-top: 40px;
	font-size: 13px;
}
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
.site-footer h4 { color: #F2F4F8; font-family: var(--font-display); font-size: 14px; margin-bottom: 12px; }
.site-footer a { color: #9AA3B8; display: block; padding: 3px 0; }
.site-footer a:hover { color: #F2F4F8; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 26px; padding-top: 16px; font-size: 12px; }
.site-footer .logo img { height: 36px; margin-bottom: 10px; }
.site-footer .bottom strong { color: #F2F4F8; }
.site-footer a .ti { font-size: 13px; margin-right: 3px; }

.site-footer .social-row { display: flex; gap: 10px; margin-top: 16px; }
.site-footer .social-row a {
	width: 40px; height: 40px;
	flex-shrink: 0;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 17px;
	padding: 0;
	box-sizing: border-box;
}
.site-footer .social-row a:hover { border-color: #F2F4F8; }
.site-footer .social-row a .ti { margin: 0; font-size: 17px; }

.footer-app-promo { margin-top: 18px; }
.footer-app-promo .label { display: block; font-size: 11px; color: #9AA3B8; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.footer-app-promo .badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-app-promo .badges a {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 12px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--radius);
	font-size: 12.5px;
	color: #F2F4F8;
}
.footer-app-promo .badges a:hover { border-color: #F2F4F8; }
.footer-app-promo .badges a .ti { margin: 0; font-size: 16px; }

.site-footer .contact-row { display: flex; align-items: center; gap: 11px; padding: 6px 0; }
.site-footer .contact-row .tile {
	width: 38px; height: 38px;
	flex-shrink: 0;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #2F5FE0, #8B2FD9);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 17px;
}
.site-footer .contact-row .tile-wa { background: #22A06B; }
.site-footer .contact-row a { display: inline; padding: 0; }


.floating-actions {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.floating-actions .fab-top,
.floating-actions .fab-wa,
.floating-actions .fab-report {
	width: 48px; height: 48px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	font-size: 21px;
	color: #fff;
}
.floating-actions .fab-top {
	background: var(--gradient);
	opacity: 0;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity .2s, transform .2s;
}
.floating-actions .fab-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.floating-actions .fab-wa { background: #25D366; }
.floating-actions .fab-wa:hover { opacity: .9; }

.floating-actions .fab-report { background: var(--accent2, var(--accent1)); font-size: 19px; }
.floating-actions .fab-report:hover { opacity: .9; }
.report-issue-box { max-width: 440px; text-align: left; }
.report-issue-box h3 { font-size: 16px; margin-bottom: 4px; color: var(--text1); }
.report-issue-box .field-label { display: block; font-size: 12.5px; font-weight: 600; margin: 12px 0 4px; color: var(--text1); }
.report-issue-box input[type="text"],
.report-issue-box input[type="email"],
.report-issue-box select,
.report-issue-box textarea {
	width: 100%; padding: 9px 11px;
	border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--surface); color: var(--text1); font-size: 13.5px;
	font-family: inherit;
}
.report-issue-box textarea { min-height: 80px; resize: vertical; }
.report-issue-box .confirm-modal-actions { justify-content: flex-start; margin-top: 16px; }
.report-issue-box .confirm-modal-actions .btn { flex: none; padding: 9px 16px; }
.report-issue-msg { font-size: 12.5px; margin-top: 8px; }
.report-issue-msg.err { color: var(--danger); }
.report-issue-msg.ok { color: var(--success); }


.field { margin-bottom: 13px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.field input, .field select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--text1);
	font-family: var(--font-body);
	font-size: 14px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field .input-wrap { position: relative; }
.field .input-wrap input { padding-right: 40px; }
.field .pw-toggle {
	position: absolute;
	right: 10px; top: 50%;
	transform: translateY(-50%);
	background: none; border: none; cursor: pointer;
	color: var(--text2); font-size: 17px;
	display: flex;
}
.form-error {
	display: none;
	border: 1px solid var(--danger);
	color: var(--danger);
	border-radius: var(--radius);
	padding: 10px 12px;
	font-size: 13px;
	margin-bottom: 13px;
}
.form-error.show { display: block; }


.auth-layout { display: flex; min-height: 100vh; }
.auth-form-col {
	width: 46%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}
.auth-form-col .inner { width: 100%; max-width: 390px; }
.auth-form-col .logo img { height: 42px; margin-bottom: 26px; }
.auth-brand-col {
	flex: 1;
	background: var(--gradient);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	color: #fff;
}
.auth-brand-col .thesis { max-width: 380px; position: relative; z-index: 1; }
.auth-brand-col .thesis h2 { color: #fff; margin-bottom: 12px; }
.auth-brand-col .thesis p { opacity: .85; font-size: 14.5px; }
.auth-brand-col .deco {
	position: absolute;
	border: 2px solid rgba(255,255,255,.16);
	border-radius: var(--radius);
}
.auth-brand-col .deco-1 { width: 210px; height: 210px; top: 8%; right: 10%; transform: rotate(18deg); }
.auth-brand-col .deco-2 { width: 140px; height: 140px; bottom: 12%; left: 8%; transform: rotate(-12deg); }
.auth-divider {
	display: flex; align-items: center; gap: 10px;
	color: var(--text2); font-size: 12px;
	margin: 15px 0;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-alt-link { text-align: center; font-size: 13px; margin-top: 16px; color: var(--text2); }

.auth-alt-link-primary {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-card, var(--radius));
	padding: 12px 14px;
	font-size: 13.5px;
	color: var(--text2);
}
.auth-alt-link-primary a { font-weight: 700; color: var(--accent1); }


.otp-inputs { display: flex; gap: 9px; justify-content: center; margin: 18px 0; }
.otp-inputs input {
	width: 46px; height: 54px;
	text-align: center;
	font-size: 21px;
	font-family: var(--font-display);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	color: var(--text1);
}
.otp-inputs input:focus { outline: none; border-color: var(--accent1); }


.filter-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
}
.filter-drawer.open { display: block; }
.filter-drawer .backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }

.filter-drawer .panel {
	position: absolute;
	top: 0; bottom: 0; left: 0;
	width: 330px;
	max-width: 86vw;
	background: var(--bg);
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	animation: slide-in-left .22s ease;
}
@keyframes slide-in-left { from { transform: translateX(-40px); opacity: 0; } to { transform: none; opacity: 1; } }
.filter-drawer .panel-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
}
.filter-drawer .panel-body { overflow-y: auto; flex: 1; }
.filter-acc-row { border-bottom: 1px solid var(--border); }
.filter-acc-row > button {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	background: none; border: none; cursor: pointer;
	padding: 13px 18px;
	font-family: var(--font-body); font-size: 14px; font-weight: 500;
	color: var(--text1);
}
.filter-acc-row .acc-panel { display: none; padding: 0 18px 14px; }
.filter-acc-row.open .acc-panel { display: block; }
.filter-acc-row.open .chev { transform: rotate(180deg); }
.filter-acc-row .chev { transition: transform .15s; color: var(--text2); }
.filter-opt { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13.5px; cursor: pointer; }
.filter-drawer .panel-foot { padding: 13px 18px; border-top: 1px solid var(--border); }


.catalog-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.catalog-tabs .tab-btn {
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 9px 16px;
	font-family: var(--font-body);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--text2);
	cursor: pointer;
}
.catalog-tabs .tab-btn.active { color: var(--accent1); border-bottom-color: var(--accent1); }


.catalog-toolbar { display: flex; gap: 10px; margin-bottom: 14px; }
.catalog-toolbar .search-wrap { flex: 1; position: relative; }
.catalog-toolbar .search-wrap .ti-search {
	position: absolute; left: 12px; top: 50%;
	transform: translateY(-50%);
	color: var(--text2);
}
.catalog-toolbar .search-wrap input {
	width: 100%;
	padding: 11px 13px 11px 38px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--text1);
	font-family: var(--font-body);
	font-size: 14px;
}
.catalog-toolbar select {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text1);
	font-family: var(--font-body);
	font-size: 13.5px;
	padding: 0 12px;
	cursor: pointer;
}
@media (max-width: 640px) {
	.catalog-toolbar { flex-wrap: wrap; }
	.catalog-toolbar .search-wrap { order: 3; flex-basis: 100%; }
}


.filter-acc-row .acc-panel.acc-scroll { max-height: 220px; overflow-y: auto; }


.chip-row { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
	flex-shrink: 0;
	padding: 6px 13px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text1);
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
}
.chip.active { border-color: var(--accent1); color: var(--accent1); }


.fade-up { opacity: 0; transform: translateY(34px); animation: fade-up .6s cubic-bezier(.16, 1, .3, 1) forwards; }
@keyframes fade-up { to { opacity: 1; transform: none; } }

.reveal { opacity: 0; }
.reveal.fade-up { opacity: 0; }


.reveal-stagger.fade-up:nth-child(1) { animation-delay: 0ms; }
.reveal-stagger.fade-up:nth-child(2) { animation-delay: 90ms; }
.reveal-stagger.fade-up:nth-child(3) { animation-delay: 180ms; }
.reveal-stagger.fade-up:nth-child(4) { animation-delay: 270ms; }
.reveal-stagger.fade-up:nth-child(5) { animation-delay: 360ms; }
.reveal-stagger.fade-up:nth-child(6) { animation-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
	.fade-up { animation-duration: .01s; animation-delay: 0s !important; }
}


.detail-layout { display: grid; grid-template-columns: 1fr 330px; gap: 22px; margin-top: 26px; align-items: start; }
.detail-side { position: sticky; top: 80px; }
.detail-side .price { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin: 10px 0; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; }
.detail-list li { display: flex; gap: 8px; align-items: flex-start; }


@media (max-width: 640px) {
	.teacher-linkedin { margin-left: 0 !important; width: 100%; }
	.teacher-linkedin .btn { width: 100%; justify-content: center; }
}


.mobile-buy-bar { display: none; }
@media (max-width: 900px) {
	.mobile-buy-bar {
		display: flex; align-items: center; justify-content: space-between; gap: 12px;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
		background: var(--surface); border-top: 1px solid var(--border);
		padding: 10px 16px;
		box-shadow: 0 -6px 20px rgba(0, 0, 0, .16);
		transition: transform .25s ease;
	}
	.mobile-buy-bar.hidden { transform: translateY(115%); }
	.mobile-buy-bar .mbb-price { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--accent1); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.mobile-buy-bar .btn { white-space: nowrap; flex-shrink: 0; }
	
	.detail-layout { padding-bottom: 72px; }
	
	body:has(.mobile-buy-bar:not(.hidden)) .floating-actions { bottom: 86px; }
}
@media (prefers-reduced-motion: reduce) {
	.mobile-buy-bar { transition: none; }
}
.curriculum .sec-row {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 8px;
	overflow: hidden;
}
.curriculum .sec-row > button {
	width: 100%; text-align: left;
	background: var(--surface); border: none; cursor: pointer;
	padding: 12px 15px;
	display: flex; justify-content: space-between; align-items: center;
	font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text1);
}
.curriculum .lessons { display: none; }
.curriculum .sec-row.open .lessons { display: block; }


.curriculum:not(.expanded) .sec-list .sec-row:nth-child(n+3) { display: none; }
.curriculum.expanded .sec-list {
	max-height: 62vh;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding-right: 4px;
	border-radius: var(--radius);
}
.curriculum.expanded .sec-list::-webkit-scrollbar { width: 8px; }
.curriculum.expanded .sec-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.curriculum-toggle {
	margin-top: 6px; width: 100%;
	display: flex; align-items: center; justify-content: center; gap: 7px;
	background: var(--surface); border: 1px solid var(--border);
	border-radius: var(--radius); cursor: pointer;
	padding: 11px; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--text1);
}
.curriculum-toggle:hover { border-color: var(--accent1); color: var(--accent1); }
.curriculum-toggle i { transition: transform .2s; }
.curriculum.expanded .curriculum-toggle i { transform: rotate(180deg); }
.curriculum .lesson-row {
	display: flex; align-items: center; gap: 9px;
	padding: 9px 15px;
	border-top: 1px solid var(--border);
	font-size: 13px; color: var(--text2);
}
.review-card { margin-bottom: 10px; }
.review-card .stars { color: var(--accent1); font-size: 12px; letter-spacing: 2px; }
.review-card p { font-size: 13.5px; margin-top: 5px; }


.verify-page { max-width: 560px; margin: 60px auto; padding: 0 20px; }
.result-card { margin-top: 18px; padding: 20px; display: none; }
.result-card.ok { display: block; border: 2px solid var(--success); }
.result-card.bad { display: block; border: 2px solid var(--danger); }
.result-card dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 13.5px; margin-top: 10px; }
.result-card dt { color: var(--text2); }


.empty-state { text-align: center; color: var(--text2); padding: 44px 0; font-size: 14px; }


@media (max-width: 900px) {
	.course-grid { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.mentor-grid { grid-template-columns: repeat(2, 1fr); }
	
	.site-footer .cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer .cols > div { min-width: 0; overflow-wrap: anywhere; }
	.detail-layout { grid-template-columns: 1fr; }
	.detail-side { position: static; }
	.auth-brand-col { display: none; }
	.auth-form-col { width: 100%; }
	
	.site-nav { display: none; }
	.mobile-menu-btn {
		display: inline-flex;
		background: none; border: none;
		color: var(--text1); font-size: 22px; cursor: pointer;
	}
	.site-nav.mobile-open {
		display: flex;
		position: absolute;
		top: 70px; left: 0; right: 0;
		flex-direction: column;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		padding: 12px 20px;
		gap: 12px;
	}
}

@media (max-width: 640px) {
	
	.bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 100px; }
	.bento-tile.large { grid-row: span 1; }
	.course-grid { grid-template-columns: 1fr; }
	.compare-grid { grid-template-columns: 1fr; }
	.cta-band { flex-direction: column; text-align: center; }
	.field-row { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.mentor-grid { grid-template-columns: 1fr 1fr; }
	
	.header-actions .btn-gradient { display: none; }
	
	.user-chip .chip-name { display: none; }
}


@media (max-width: 480px) {
	.site-footer .cols { grid-template-columns: 1fr; gap: 30px; }
}


.dp-native-hidden { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.dp-wrap { position: relative; display: block; width: 100%; flex: 1 1 0%; min-width: 0; }
.dp-trigger {
	display: flex; align-items: center; gap: 8px;
	width: 100%; padding: 10px 12px;
	border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--bg); color: var(--text1);
	font-family: var(--font-body); font-size: 14px;
	cursor: pointer; text-align: left;
}
.dp-trigger:hover { border-color: var(--accent1); }
.dp-trigger .dp-placeholder { color: var(--text2); }
.dp-trigger span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.dp-popover {
	position: absolute; top: calc(100% + 6px); left: 0; z-index: 50;
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 12px; width: 260px;
}
.dp-calendar { width: 100%; }
.dp-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dp-cal-title { font-size: 13px; font-weight: 600; background: none; border: none; color: var(--text1); cursor: pointer; padding: 4px 8px; border-radius: var(--radius); font-family: var(--font-body); }
.dp-cal-title:hover { background: var(--border); }
.dp-nav { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border: none; background: none; color: var(--text2); border-radius: var(--radius); cursor: pointer; }
.dp-nav:hover { background: var(--border); color: var(--text1); }
.dp-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 11px; color: var(--text2); margin-bottom: 4px; }
.dp-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-day {
	aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
	border: none; background: none; color: var(--text1); font-size: 12.5px;
	border-radius: var(--radius); cursor: pointer;
}
.dp-day:hover:not(:disabled) { background: var(--border); }
.dp-day:disabled { color: var(--text2); opacity: .4; cursor: not-allowed; }
.dp-day.today { font-weight: 700; color: var(--accent1); }
.dp-day.selected { background: var(--gradient); color: #fff; font-weight: 600; }

.dp-years-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.dp-year-cell { padding: 8px 0; border: none; background: none; color: var(--text1); font-size: 13px; border-radius: var(--radius); cursor: pointer; }
.dp-year-cell:hover { background: var(--border); }
.dp-year-cell.active { background: var(--gradient); color: #fff; font-weight: 600; }

@media (max-width: 480px) {
	.dp-popover { position: fixed; left: 12px; right: 12px; top: auto; bottom: 12px; width: auto; max-height: 70vh; overflow-y: auto; }
}



.tl-page { padding-top: 24px; padding-bottom: 90px; }
.tl-page section { margin-bottom: 56px; }
.tl-page h2 { margin-bottom: 18px; text-wrap: balance; }
.tl-lede { color: var(--text2); font-size: 16px; max-width: 1400px; margin: 0 0 20px; text-align: justify; text-align-last: left; }

.tl-page-nav {
	position: sticky;
	top: 82px;
	z-index: 20;
	display: flex;
	flex-wrap: nowrap;
	gap: 2px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	background: color-mix(in srgb, var(--bg) 90%, transparent);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 6px;
	margin-bottom: 36px;
	width: fit-content;
	max-width: 100%;
}
.tl-page-nav::-webkit-scrollbar { display: none; }

@media (max-width: 640px) {
	.tl-page-nav { position: static; }
}
.tl-page-nav button {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--text2);
	background: none;
	border: none;
	border-radius: 100px;
	padding: 8px 14px;
	cursor: pointer;
	white-space: nowrap;
}
.tl-page-nav button:hover { color: var(--text1); background: var(--surface); }

.tl-page section[id] { scroll-margin-top: 130px; }


.tl-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: var(--sidebar);
	border-radius: 20px;
	padding: 52px 40px;
	color: #F2F4F8;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
@media (max-width: 860px) { .tl-hero { grid-template-columns: 1fr; padding: 36px 24px; } }
.tl-hero::before, .tl-hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1; opacity: .5; }
.tl-hero::before { width: 420px; height: 420px; background: radial-gradient(circle, var(--accent1), transparent 70%); top: -180px; right: -120px; }
.tl-hero::after { width: 320px; height: 320px; background: radial-gradient(circle, var(--accent2), transparent 70%); bottom: -160px; left: -80px; opacity: .35; }
.tl-hero h1 { color: #fff; font-size: 36px; line-height: 1.18; margin: 0 0 14px; text-wrap: balance; }
.tl-hero .tl-lede { color: #B8C0D6; }
.tl-hero-kicker { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B8C4FF; margin-bottom: 16px; }
.tl-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.tl-chip { display: inline-flex; align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 100px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: #EDEFFB; }
#tl-who .tl-chip { background: var(--surface); border-color: var(--border); color: var(--text1); }
button.tl-chip-more { cursor: pointer; font: inherit; }

.tl-chip[hidden] { display: none; }
.tl-chip-launch { background: var(--gradient); border-color: transparent; color: #fff; }
.tl-launch-highlight { font-size: 14px; color: var(--text2); max-width: 480px; margin: -8px 0 20px; padding: 10px 14px; border-radius: 6px; background: rgba(255,255,255,.05); border-left: 3px solid var(--accent2); }
.tl-launch-highlight b { color: var(--accent2); }

.tl-hero-visual { display: flex; justify-content: center; width: 100%; }
.tl-hero-video { width: 100%; max-width: 520px; border-radius: 16px; overflow: hidden; }
.tl-hv-card { width: 100%; max-width: 480px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 20px; backdrop-filter: blur(6px); }
.tl-hv-dots { display: flex; gap: 5px; margin-bottom: 12px; }
.tl-hv-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); }
.tl-hv-thumb { position: relative; height: 190px; border-radius: 10px; margin-bottom: 14px; background: linear-gradient(135deg, var(--accent1), var(--accent2)); display: flex; align-items: center; justify-content: center; }
.tl-hv-play { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; color: var(--accent1); font-size: 18px; }
.tl-hv-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.35); color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 100px; }
.tl-hv-row { margin-bottom: 8px; }
.tl-hv-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,.16); }
.tl-hv-progress { height: 6px; border-radius: 3px; background: rgba(255,255,255,.14); margin: 14px 0 12px; overflow: hidden; }
.tl-hv-progress-fill { width: 62%; height: 100%; background: var(--gradient); border-radius: 3px; }
.tl-hv-stat { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #C6CCE0; }


.tl-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .tl-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tl-cards { grid-template-columns: 1fr; } }
.tl-card { padding: 20px 20px 22px; }
.tl-card-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 14px; background: color-mix(in srgb, var(--tl-icon, var(--accent1)) 16%, transparent); color: var(--tl-icon, var(--accent1)); font-size: 19px; }
.tl-k { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.tl-v { font-size: 14px; color: var(--text2); }


.tl-editorial-body { border-left: 3px solid var(--accent1); padding: 4px 0 4px 28px; }
.tl-editorial-body h2 { font-size: 28px; line-height: 1.25; max-width: 22ch; }
@media (max-width: 640px) { .tl-editorial-body { padding-left: 18px; } .tl-editorial-body h2 { font-size: 22px; } }


.tl-steps { list-style: none; counter-reset: tl-step; margin: 0; padding: 0; }
.tl-steps li { counter-increment: tl-step; position: relative; padding: 4px 0 20px 46px; border-left: 2px solid var(--border); margin-left: 15px; }
.tl-steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-steps li::before { content: counter(tl-step); position: absolute; left: -16px; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 13px; font-weight: 700; font-family: var(--font-display); display: flex; align-items: center; justify-content: center; }
.tl-steps .tl-v { max-width: 1400px; text-align: justify; text-align-last: left; }


.tl-mid-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--gradient); border-radius: 16px; padding: 22px 28px; }
.tl-mid-cta span { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; }
.tl-mid-cta .btn { background: rgba(255,255,255,.96); color: var(--accent1); }
@media (max-width: 560px) { .tl-mid-cta { flex-direction: column; text-align: center; } }

.tl-tags { display: flex; flex-wrap: wrap; gap: 10px; }



.tl-faq-item { border-bottom: 1px solid var(--border); }
.tl-faq-item:first-of-type { border-top: 1px solid var(--border); }
.tl-faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 4px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; max-width: 1400px; }
.tl-faq-item summary::-webkit-details-marker { display: none; }
.tl-faq-item summary i { flex-shrink: 0; color: var(--accent1); transition: transform .2s ease; }
.tl-faq-item[open] summary i { transform: rotate(180deg); }
.tl-a { font-size: 14px; color: var(--text2); padding: 0 4px 18px; max-width: 1400px; text-align: justify; text-align-last: left; }


.tl-contact-box { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; }
@media (max-width: 560px) { .tl-contact-box { flex-direction: column; align-items: flex-start; } .tl-contact-box .btn { width: 100%; } }


.tl-final-cta { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px 24px; }
.tl-final-cta p { color: var(--text2); margin: 8px 0 18px; }


.floating-actions .share-menu { display: contents; }
.floating-actions .share-toggle {
	width: 48px; height: 48px; border-radius: 50%; padding: 0;
	justify-content: center;
	background: var(--gradient); color: #fff; border-color: transparent;
	font-size: 0; 
}
.floating-actions .share-toggle i { font-size: 19px; }
