/* Resource pages + multi-column footer */

/* ---- Footer link columns (light) ---- */

.site-footer {
	padding: 0;
	background: #0a2540;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0;
}

.site-footer__links {
	background: #fff;
	border-top: 1px solid rgba(10, 37, 64, 0.08);
	padding: 3rem 1.25rem 2.5rem;
}

.site-footer__links-inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem 1.5rem;
}

.footer-col__title {
	margin: 0 0 1rem;
	font-family: "Instrument Sans", system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cx-brand-deep);
}

.footer-col__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.footer-col__list a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9375rem;
	color: var(--cx-brand-deep);
	text-decoration: none;
	opacity: 0.82;
	transition: opacity 0.2s ease, color 0.2s ease, transform 0.25s var(--cx-ease);
}

.footer-col__list a:hover {
	opacity: 1;
	color: var(--cx-teal);
	transform: translateX(2px);
}

.footer-col__soon {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.15rem 0.4rem;
	border-radius: 999px;
	background: rgba(13, 148, 136, 0.12);
	color: var(--cx-teal-dark);
}

.site-footer__bar-wrap {
	padding: 0.95rem 1.25rem;
	background: #0a2540;
}

.site-footer__bar {
	gap: 0.75rem 1.25rem !important;
	width: 100%;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.site-footer__legal a:hover {
	color: #5eead4;
}

.site-footer__legal {
	white-space: normal;
}

@media (max-width: 900px) {
	.site-footer__links-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 520px) {
	.site-footer__links-inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
}

/* ---- Shared resource page chrome ---- */

.res-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.85rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background: linear-gradient(145deg, #14b8a6, #0d9488);
	color: #fff;
	box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
	transition: transform 0.35s var(--cx-ease), box-shadow 0.35s var(--cx-ease);
}

.res-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-card:hover .res-icon,
.res-tile:hover .res-icon {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35);
}

.res-icon--navy {
	background: linear-gradient(145deg, #1b3a5a, #0a2540);
	box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25);
}

.res-icon--mint {
	background: linear-gradient(145deg, #5eead4, #14b8a6);
	color: #0a2540;
}

.res-tile {
	display: block;
	padding: 1.5rem;
	border-radius: var(--cx-radius);
	background: #fff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	text-decoration: none;
	color: inherit;
	height: 100%;
	transition: transform 0.3s var(--cx-ease), box-shadow 0.3s var(--cx-ease), border-color 0.2s ease;
}

.res-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(10, 37, 64, 0.08);
	border-color: rgba(13, 148, 136, 0.3);
}

.res-tile h3 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	color: var(--cx-brand-deep);
}

.res-tile p {
	margin: 0;
	color: var(--cx-slate-600);
	font-size: 0.95rem;
}

.res-tile__meta {
	display: block;
	margin-top: 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--cx-teal);
}

.res-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	background: rgba(13, 148, 136, 0.12);
	color: var(--cx-teal-dark);
}

.res-badge--soon {
	background: rgba(10, 37, 64, 0.08);
	color: var(--cx-slate-600);
}

.faq-list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	border-radius: var(--cx-radius);
	background: #fff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.3s var(--cx-ease);
}

.faq-item[open] {
	border-color: rgba(13, 148, 136, 0.35);
	box-shadow: 0 10px 28px rgba(10, 37, 64, 0.06);
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.1rem 1.25rem;
	font-family: "Instrument Sans", system-ui, sans-serif;
	font-weight: 650;
	font-size: 1.02rem;
	color: var(--cx-brand-deep);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--cx-teal);
	transition: transform 0.25s var(--cx-ease);
}

.faq-item[open] summary::after {
	content: "–";
}

.faq-item__body {
	padding: 0 1.25rem 1.2rem;
	color: var(--cx-slate-600);
	font-size: 0.98rem;
	line-height: 1.65;
}

.timeline {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	padding-left: 1.5rem;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 0.35rem;
	top: 0.25rem;
	bottom: 0.25rem;
	width: 2px;
	background: linear-gradient(180deg, var(--cx-teal), rgba(13, 148, 136, 0.15));
}

.timeline__item {
	position: relative;
	padding: 0 0 1.75rem 1.25rem;
}

.timeline__item::before {
	content: "";
	position: absolute;
	left: -1.28rem;
	top: 0.35rem;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--cx-teal);
	box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.timeline__ver {
	font-family: "Instrument Sans", system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--cx-teal);
	margin: 0 0 0.35rem;
}

.timeline__item h3 {
	margin: 0 0 0.4rem;
	font-size: 1.15rem;
	color: var(--cx-brand-deep);
}

.timeline__item p {
	margin: 0;
	color: var(--cx-slate-600);
}

.timeline__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.75rem;
}

.timeline__tags span {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(10, 37, 64, 0.06);
	color: var(--cx-brand-deep);
}

.video-grid,
.blog-grid,
.usecase-grid,
.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 900px) {
	.video-grid,
	.blog-grid,
	.usecase-grid,
	.case-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.video-grid,
	.blog-grid,
	.usecase-grid,
	.case-grid {
		grid-template-columns: 1fr;
	}
}

.video-card {
	border-radius: var(--cx-radius);
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	transition: transform 0.3s var(--cx-ease), box-shadow 0.3s var(--cx-ease);
}

.video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(10, 37, 64, 0.08);
}

.video-card__thumb {
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.45), transparent 50%),
		linear-gradient(145deg, #0a2540, #0f766e);
	position: relative;
}

.video-card__play {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s var(--cx-ease);
}

.video-card:hover .video-card__play {
	transform: scale(1.08);
}

.video-card__play svg {
	width: 1.1rem;
	height: 1.1rem;
	margin-left: 2px;
	fill: #0a2540;
}

.video-card__body {
	padding: 1.15rem 1.25rem 1.35rem;
}

.video-card__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	color: var(--cx-brand-deep);
}

.video-card__body p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--cx-slate-600);
}

.demo-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	counter-reset: demo;
}

.demo-step {
	padding: 1.5rem;
	border-radius: var(--cx-radius);
	background: #fff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	position: relative;
}

.demo-step::before {
	counter-increment: demo;
	content: counter(demo);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	margin-bottom: 1rem;
	font-family: "Instrument Sans", system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	background: rgba(13, 148, 136, 0.12);
	color: var(--cx-teal-dark);
}

@media (max-width: 800px) {
	.demo-steps {
		grid-template-columns: 1fr;
	}
}

.placeholder-panel {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	padding: 2.5rem 1.75rem;
	border-radius: 1.25rem;
	background: #fff;
	border: 1px dashed rgba(13, 148, 136, 0.45);
	box-shadow: 0 16px 40px rgba(10, 37, 64, 0.05);
}

.placeholder-panel .res-icon {
	margin-left: auto;
	margin-right: auto;
}

.form-panel {
	max-width: 560px;
	margin: 0 auto;
	padding: 1.75rem;
	border-radius: var(--cx-radius);
	background: #fff;
	border: 1px solid rgba(10, 37, 64, 0.08);
}

.form-panel label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 650;
	color: var(--cx-brand-deep);
	margin: 0 0 0.4rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.75rem 0.9rem;
	border-radius: 0.65rem;
	border: 1px solid rgba(10, 37, 64, 0.14);
	font: inherit;
	color: var(--cx-brand-deep);
	background: #fbfcfe;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
	outline: none;
	border-color: var(--cx-teal);
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-panel .form-note {
	font-size: 0.85rem;
	color: var(--cx-slate-600);
	margin: 0.5rem 0 0;
}
