.dc360 {
	--dc360-red: #9d0000;
	--dc360-red-dark: #720000;
	--dc360-ink: #1d1d1d;
	--dc360-muted: #666;
	--dc360-line: #e4e4e4;
	--dc360-card: #fafafa;

	position: relative;
	width: 100%;
	max-width: 1680px;
	margin: 0 auto;
	color: var(--dc360-ink);
	background: #fff;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.45;
}

.dc360 *,
.dc360 *::before,
.dc360 *::after {
	box-sizing: border-box;
}

.dc360 a {
	color: inherit;
	text-decoration: none;
}

.dc360 button,
.dc360 a {
	font: inherit;
}

.dc360__scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.dc360__stage {
	position: relative;
	min-width: 1120px;
	aspect-ratio: 2048 / 1152;
	background: #fff;
}

.dc360__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	user-select: none;
	-webkit-user-drag: none;
	background: #fff;
}

.dc360__map {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.dc360__node {
	cursor: pointer;
	outline: none;
}

.dc360__hit-zone {
	fill: transparent;
	pointer-events: all;
}

.dc360__focus-ring {
	fill: rgba(157, 0, 0, 0);
	stroke: rgba(157, 0, 0, 0);
	stroke-width: 10;
	pointer-events: none;
	transition: fill .16s ease, stroke .16s ease, stroke-width .16s ease;
}

.dc360__node:hover .dc360__focus-ring,
.dc360__node:focus-visible .dc360__focus-ring {
	fill: rgba(157, 0, 0, .055);
	stroke: rgba(157, 0, 0, .28);
	stroke-width: 12;
}

.dc360__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 610px);
	gap: 26px;
	align-items: end;
	padding: 34px clamp(20px, 4vw, 72px) 28px;
}

.dc360__intro h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.04;
	letter-spacing: -.03em;
}

.dc360__intro p {
	margin: 0;
	color: var(--dc360-muted);
}

.dc360__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 0 clamp(20px, 4vw, 72px);
}

.dc360__card {
	min-height: 216px;
	padding: 22px;
	border: 1px solid var(--dc360-line);
	border-radius: 16px;
	background: var(--dc360-card);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dc360__number {
	color: var(--dc360-red);
	font-size: .8rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.dc360__card h3 {
	margin: 0;
	font-size: 1.16rem;
	line-height: 1.15;
}

.dc360__card p {
	margin: 0;
	color: var(--dc360-muted);
	font-size: .93rem;
}

.dc360__card p strong {
	color: var(--dc360-ink);
}

.dc360__card-button {
	margin-top: auto;
	align-self: flex-start;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--dc360-red);
	font-weight: 850;
	cursor: pointer;
}

.dc360__cta {
	margin: 20px clamp(20px, 4vw, 72px) 60px;
	padding: 24px;
	border: 1px solid var(--dc360-line);
	border-radius: 18px;
	background: #fff;
}

.dc360__cta h2 {
	margin-top: 0;
}

.dc360__eyebrow {
	margin: 0 0 8px;
	color: var(--dc360-red);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.dc360__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 16px;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	cursor: pointer;
}

.dc360__button--primary {
	color: #fff !important;
	background: var(--dc360-red);
	box-shadow: 0 8px 18px rgba(157, 0, 0, .15);
}

.dc360__button--primary:hover {
	background: var(--dc360-red-dark);
}

.dc360__button--ghost {
	color: var(--dc360-ink);
	background: #f5f5f5;
	border: 1px solid var(--dc360-line);
}

.dc360__backdrop {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(0, 0, 0, .34);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}

.dc360__drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
	width: min(500px, 94vw);
	height: 100dvh;
	padding: 26px;
	overflow: auto;
	background: #fff;
	box-shadow: -24px 0 70px rgba(0, 0, 0, .2);
	transform: translateX(102%);
	transition: transform .22s ease;
}

.dc360--drawer-open .dc360__backdrop {
	opacity: 1;
	pointer-events: auto;
}

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

.dc360__drawer-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.dc360__drawer-close {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--dc360-line);
	border-radius: 50%;
	background: #fff;
	font-size: 1.4rem;
	cursor: pointer;
}

.dc360__drawer-kicker {
	margin: 0 0 8px;
	color: var(--dc360-red);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.dc360__drawer-title {
	margin: 0;
	font-size: clamp(1.7rem, 6vw, 2.5rem);
	line-height: 1.04;
	letter-spacing: -.03em;
}

.dc360__drawer-brand {
	margin: 12px 0 0;
	font-weight: 850;
}

.dc360__drawer-description {
	margin: 24px 0 0;
	color: var(--dc360-muted);
}

.dc360__drawer-items {
	margin: 22px 0 32px;
	padding-left: 18px;
}

.dc360__drawer-items li + li {
	margin-top: 8px;
}

.dc360__drawer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (max-width: 980px) {
	.dc360__intro {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 680px) {
	.dc360__stage {
		min-width: 1180px;
	}

	.dc360__cards {
		grid-template-columns: 1fr;
	}

	.dc360__intro {
		padding-top: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dc360 *,
	.dc360 *::before,
	.dc360 *::after {
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
