.tccs-container {
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}

.tccs-site-shell {
	min-height: 100vh;
}

.tccs-site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(13, 44, 116, 0.08);
}

.tccs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 86px;
}

.tccs-header__brand,
.tccs-mobile-panel__brand,
.tccs-site-footer__logo {
	display: inline-flex;
	align-items: center;
}

.tccs-header__brand img {
	width: clamp(180px, 18vw, 255px);
	height: auto;
}

.tccs-header__nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.tccs-header__menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 34px);
	list-style: none;
	padding: 0;
	margin: 0;
}

.tccs-header__menu li {
	list-style: none;
}

.tccs-header__menu a {
	position: relative;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--tccs-text);
	padding: 10px 0;
	transition: color 0.2s ease;
}

.tccs-header__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	border-radius: 999px;
	background: var(--tccs-blue);
	opacity: 0;
	transform: scaleX(0.35);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.tccs-header__menu a:hover,
.tccs-header__menu a:focus-visible,
.tccs-header__menu a.is-active,
.tccs-header__menu .current-menu-item > a,
.tccs-header__menu .current-menu-parent > a,
.tccs-header__menu .current-menu-ancestor > a,
.tccs-header__menu .current_page_item > a {
	color: var(--tccs-navy);
}

.tccs-header__menu a:hover::after,
.tccs-header__menu a:focus-visible::after,
.tccs-header__menu a.is-active::after,
.tccs-header__menu .current-menu-item > a::after,
.tccs-header__menu .current-menu-parent > a::after,
.tccs-header__menu .current-menu-ancestor > a::after,
.tccs-header__menu .current_page_item > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.tccs-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tccs-icon-button,
.tccs-search-submit,
.tccs-mobile-panel__search button,
.tccs-newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--tccs-navy);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tccs-icon-button {
	width: 44px;
	height: 44px;
}

.tccs-icon-button:hover,
.tccs-search-submit:hover,
.tccs-mobile-panel__search button:hover,
.tccs-newsletter-form button:hover {
	background: rgba(47, 107, 255, 0.08);
	color: var(--tccs-blue);
}

.tccs-icon-button svg,
.tccs-search-submit svg,
.tccs-mobile-panel__search button svg,
.tccs-newsletter-form button svg,
.tccs-link-arrow svg,
.tccs-button__icon svg,
.tccs-socials svg,
.tccs-mobile-panel__menu-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tccs-site-shell svg.is-fill {
	fill: currentColor;
	stroke: none;
}

.tccs-socials .tccs-get-icon--filled,
.tccs-socials svg {
	fill: currentColor;
	stroke: none;
}

.tccs-search-panel {
	padding: 0 0 18px;
}

.tccs-search-form {
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 460px;
	margin-left: auto;
	padding: 10px 12px 10px 20px;
	background: var(--tccs-surface);
	border: 1px solid var(--tccs-border);
	border-radius: 999px;
	box-shadow: 0 14px 28px rgba(11, 36, 91, 0.08);
}

.tccs-search-form input,
.tccs-mobile-panel__search input,
.tccs-newsletter-form input {
	width: 100%;
	border: 0;
	background: transparent;
	color: var(--tccs-text);
	outline: none;
}

.tccs-mobile-overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: rgba(5, 18, 50, 0.35);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.tccs-mobile-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 55;
	width: min(420px, 100vw);
	height: 100vh;
	padding: 24px 20px 28px;
	background: #ffffff;
	box-shadow: -24px 0 40px rgba(7, 22, 56, 0.16);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	overflow-y: auto;
}

.tccs-mobile-panel.is-open,
.tccs-mobile-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.tccs-mobile-panel.is-open {
	transform: translateX(0);
}

body.tccs-menu-open {
	overflow: hidden;
}

.tccs-mobile-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.tccs-mobile-panel__brand img {
	width: 200px;
}

.tccs-mobile-panel__nav ul,
.tccs-site-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tccs-mobile-panel__nav a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 12px;
	border-radius: 16px;
	font-weight: 600;
	color: var(--tccs-text);
}

.tccs-mobile-panel__nav a.is-active,
.tccs-mobile-panel__nav a:hover {
	background: #edf4ff;
	color: var(--tccs-blue);
}

.tccs-mobile-panel__menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}

.tccs-mobile-panel__search {
	display: flex;
	align-items: center;
	margin-top: 22px;
	padding: 8px 10px 8px 16px;
	border: 1px solid var(--tccs-border);
	border-radius: 16px;
	background: #ffffff;
}

.tccs-mobile-panel__search button,
.tccs-newsletter-form button {
	width: 42px;
	height: 42px;
}

.tccs-mobile-panel__promo {
	margin-top: 24px;
	padding: 28px 24px;
	border-radius: 22px;
	background: linear-gradient(180deg, var(--tccs-navy) 0%, var(--tccs-navy-deep) 100%);
	color: #f4f8ff;
}

.tccs-mobile-panel__promo img {
	width: 190px;
	margin-bottom: 20px;
}

.tccs-mobile-panel__promo p,
.tccs-site-footer__brand p,
.tccs-site-footer__col p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(244, 248, 255, 0.92);
}

.tccs-socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.tccs-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.tccs-home {
	padding-bottom: 0;
}

.tccs-hero {
	padding: 46px 0 36px;
}

.tccs-hero__grid,
.tccs-reference__grid,
.tccs-site-footer__grid {
	display: grid;
	gap: 34px;
}

.tccs-hero__grid {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
}

.tccs-hero__content {
	max-width: 520px;
}

.tccs-eyebrow {
	display: inline-flex;
	margin: 0 0 20px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(47, 107, 255, 0.08);
	color: var(--tccs-blue);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tccs-hero h1 {
	margin: 0 0 24px;
	font-size: clamp(2.6rem, 5vw, 4.75rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: var(--tccs-navy);
}

.tccs-hero__lead {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.9;
	color: var(--tccs-text-muted);
}

.tccs-hero__actions {
	margin-top: 34px;
}

.tccs-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 22px;
	border-radius: 14px;
	border: 1px solid transparent;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tccs-button:hover {
	transform: translateY(-1px);
}

.tccs-button--primary {
	background: linear-gradient(180deg, #11378e 0%, #0b2a73 100%);
	color: #ffffff;
	box-shadow: 0 16px 30px rgba(17, 55, 142, 0.24);
}

.tccs-button--secondary {
	border-color: rgba(47, 107, 255, 0.35);
	background: rgba(255, 255, 255, 0.92);
	color: var(--tccs-blue);
}

.tccs-button--light {
	background: #ffffff;
	color: var(--tccs-blue);
}

.tccs-hero__image-frame {
	position: relative;
	overflow: hidden;
	border-radius: 52px 52px 52px 118px;
	box-shadow: var(--tccs-shadow);
	background: #dfe8fb;
}

.tccs-hero__image-frame::after {
	content: "";
	position: absolute;
	inset: auto auto 12px 12px;
	width: 110px;
	height: 110px;
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(47, 107, 255, 0));
	filter: blur(8px);
	pointer-events: none;
}

.tccs-hero__image-frame img {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.tccs-section {
	padding: 36px 0;
}

.tccs-section-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	text-align: center;
}

.tccs-section-heading--left {
	align-items: flex-start;
	text-align: left;
}

.tccs-section-heading h2 {
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.7rem);
	line-height: 1.15;
	color: var(--tccs-navy);
	letter-spacing: -0.03em;
}

.tccs-section-heading__line {
	width: 60px;
	height: 4px;
	border-radius: 999px;
	background: var(--tccs-blue);
}

.tccs-topics__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.tccs-topic-card,
.tccs-article-card,
.tccs-reference__table-card {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--tccs-border);
	box-shadow: 0 12px 32px rgba(13, 44, 116, 0.06);
}

.tccs-topic-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	padding: 28px 20px 24px;
	border-radius: 22px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	scroll-margin-top: 130px;
}

.tccs-topic-card:hover {
	transform: translateY(-4px);
	border-color: rgba(47, 107, 255, 0.24);
	box-shadow: 0 20px 38px rgba(11, 36, 91, 0.1);
}

.tccs-topic-card__icon {
	width: 72px;
	height: 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.tccs-topic-card__icon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.tccs-topic-card h3,
.tccs-docs-card h2,
.tccs-article-card h3,
.tccs-site-footer__col h2 {
	margin: 0;
	font-size: 1.24rem;
	line-height: 1.35;
	color: var(--tccs-navy);
}

.tccs-topic-card p,
.tccs-docs-card p,
.tccs-article-card__excerpt {
	margin: 14px 0 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: var(--tccs-text-muted);
}

.tccs-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
	font-weight: 700;
	color: var(--tccs-blue);
}

.tccs-link-arrow svg,
.tccs-button__icon svg {
	width: 18px;
	height: 18px;
}

.tccs-reference {
	padding-top: 42px;
	padding-bottom: 40px;
	background: linear-gradient(180deg, rgba(237, 244, 255, 0.92) 0%, rgba(248, 251, 255, 0.92) 100%);
}

.tccs-reference__grid {
	grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
	align-items: start;
}

.tccs-reference__table-card {
	padding: 30px;
	border-radius: 28px;
}

.tccs-table-wrap {
	overflow-x: auto;
}

.tccs-lux-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.98rem;
	border: 1px solid rgba(13, 44, 116, 0.08);
	border-radius: 18px;
	overflow: hidden;
}

.tccs-lux-table thead th {
	background: #ffffff;
	font-weight: 800;
	color: var(--tccs-navy);
}

.tccs-lux-table th,
.tccs-lux-table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid rgba(13, 44, 116, 0.08);
}

.tccs-lux-table tbody tr:last-child td {
	border-bottom: 0;
}

.tccs-docs-card {
	padding: 34px 32px;
	border-radius: 28px;
	background: linear-gradient(180deg, #0d2c74 0%, #071c4b 100%);
	color: #f4f8ff;
	box-shadow: 0 20px 42px rgba(7, 22, 56, 0.22);
}

.tccs-docs-card h2 {
	color: #ffffff;
	font-size: 2rem;
}

.tccs-docs-card__list {
	list-style: none;
	padding: 0;
	margin: 22px 0 28px;
}

.tccs-docs-card__list li {
	position: relative;
	padding-left: 28px;
	font-size: 1rem;
	line-height: 1.9;
}

.tccs-docs-card__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 800;
	color: #ffffff;
}

.tccs-articles__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.tccs-article-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 22px;
	overflow: hidden;
}

.tccs-article-card__image-link {
	position: relative;
	display: block;
}

.tccs-article-card__image-wrap {
	overflow: hidden;
	background: linear-gradient(180deg, rgba(13, 44, 116, 0.08), rgba(13, 44, 116, 0));
}

.tccs-article-card__image-wrap img {
	width: 100%;
	aspect-ratio: 1.4 / 1;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.25s ease;
}

.tccs-article-card:hover .tccs-article-card__image-wrap img {
	transform: scale(1.04);
}

.tccs-article-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 18px 22px;
}

.tccs-article-card__category {
	margin: 0 0 8px;
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--tccs-blue);
}

.tccs-article-card__date {
	margin: 0 0 10px;
	font-size: 0.86rem;
	font-weight: 700;
	color: #8593b5;
}

.tccs-article-card h3 {
	font-size: 1.34rem;
}

.tccs-article-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tccs-articles__footer {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.tccs-site-footer {
	margin-top: 40px;
	padding-top: 34px;
	background: linear-gradient(180deg, #082567 0%, #05163d 100%);
	color: #edf4ff;
}

.tccs-site-footer__grid {
	grid-template-columns: 1.2fr 0.8fr 0.7fr 1fr;
	padding-bottom: 28px;
}

.tccs-site-footer__logo img {
	width: 220px;
	margin-bottom: 18px;
}

.tccs-site-footer__col h2 {
	margin-bottom: 18px;
	color: #ffffff;
}

.tccs-site-footer__col ul {
	display: grid;
	gap: 12px;
}

.tccs-site-footer__col a {
	color: rgba(244, 248, 255, 0.92);
}

.tccs-newsletter-form {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 8px 10px 8px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.98);
}

.tccs-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tccs-site-footer__bottom p {
	margin: 0;
	padding: 18px 0 24px;
	text-align: center;
	font-size: 0.95rem;
	color: rgba(244, 248, 255, 0.85);
}

@media (max-width: 1199px) {
	.tccs-hero__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.tccs-hero__content {
		max-width: 700px;
	}

	.tccs-topics__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tccs-reference__grid {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
	}

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

	.tccs-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.tccs-header__nav,
	.tccs-search-toggle {
		display: none;
	}

	.tccs-menu-toggle {
		display: inline-flex;
	}

	.tccs-hero {
		padding-top: 28px;
	}

	.tccs-hero__grid,
	.tccs-reference__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.tccs-hero__image-frame {
		border-radius: 38px;
	}
}

@media (min-width: 992px) {
	.tccs-menu-toggle,
	.tccs-mobile-panel,
	.tccs-mobile-overlay {
		display: none;
	}
}

@media (max-width: 767px) {
	.tccs-container {
		width: min(100% - 28px, 100%);
	}

	.tccs-header__inner {
		min-height: 78px;
	}

	.tccs-header__brand img {
		width: 180px;
	}

	.tccs-hero {
		padding: 22px 0 26px;
	}

	.tccs-eyebrow {
		font-size: 0.82rem;
	}

	.tccs-hero h1 {
		font-size: clamp(2.45rem, 8vw, 3.4rem);
	}

	.tccs-hero__lead,
	.tccs-topic-card p,
	.tccs-docs-card p,
	.tccs-article-card__excerpt,
	.tccs-site-footer__brand p,
	.tccs-site-footer__col p {
		font-size: 0.98rem;
		line-height: 1.85;
	}

	.tccs-topics__grid,
	.tccs-articles__grid,
	.tccs-site-footer__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.tccs-reference__table-card,
	.tccs-docs-card,
	.tccs-topic-card,
	.tccs-article-card,
	.tccs-mobile-panel__promo {
		border-radius: 24px;
	}

	.tccs-reference__table-card,
	.tccs-docs-card {
		padding: 24px 20px;
	}

	.tccs-section {
		padding: 28px 0;
	}

	.tccs-section-heading {
		margin-bottom: 22px;
	}

	.tccs-article-card h3,
	.tccs-docs-card h2 {
		font-size: 1.75rem;
	}

	.tccs-site-footer {
		margin-top: 26px;
		padding-top: 28px;
	}
}
