.wdts-home-page {
	--wdts-home-base: #f4f5f7;
	--wdts-home-section: #eef1f4;
	--wdts-home-card: #ffffff;
	--wdts-home-soft: #d8dfe8;
	--wdts-home-border: #d8dee6;
	--wdts-home-divider: #e7ebf0;
	--wdts-home-primary: #6f86a4;
	--wdts-home-primary-deep: #536b8a;
	--wdts-home-primary-hover: #5b728f;
	--wdts-home-mint: #8fb8b2;
	--wdts-home-heading: #2f3a4a;
	--wdts-home-text: #435063;
	--wdts-home-secondary: #5f6c7d;
	--wdts-home-caption: #8a95a3;
	--wdts-home-gold: #d28e24;
	--wdts-home-gold-hover: #b87b1f;
	--wdts-home-shadow-sm: 0 2px 8px -2px rgba(47, 58, 74, 0.05);
	--wdts-home-shadow-elegant: 0 20px 40px -15px rgba(111, 134, 164, 0.12);
	--wdts-home-shadow-elegant-hover: 0 30px 60px -20px rgba(111, 134, 164, 0.25);
	--wdts-home-shadow-primary: 0 10px 30px -5px rgba(210, 142, 36, 0.35);
	--wdts-home-shadow-stacked: 12px 12px 0 0 rgba(111, 134, 164, 0.08), 12px 12px 0 1px rgba(111, 134, 164, 0.15);
	--wdts-home-shadow-stacked-lg: 18px 18px 0 0 rgba(111, 134, 164, 0.08), 18px 18px 0 1px rgba(111, 134, 164, 0.15);
	--wdts-home-radius-lg: 24px;
	--wdts-home-radius-xl: 32px;
	--wdts-home-radius-pill: 999px;
	--wdts-home-shell: min(100% - 48px, 1280px);
	--wdts-home-shell-narrow: min(100% - 48px, 1040px);
	--wdts-home-shell-cta: min(100% - 48px, 768px);
	position: relative;
	background:
		radial-gradient(1100px 560px at 12% -8%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.18) 46%, transparent 72%),
		radial-gradient(900px 540px at 88% 6%, rgba(210, 142, 36, 0.09) 0%, rgba(210, 142, 36, 0.02) 38%, transparent 70%),
		radial-gradient(820px 520px at 50% 62%, rgba(143, 184, 178, 0.08) 0%, transparent 68%),
		linear-gradient(180deg, #fafbfc 0%, #f4f6f8 24%, #eef1f4 100%);
	color: var(--wdts-home-text);
	font-family: "Noto Sans TC", sans-serif;
	isolation: isolate;
}

.wdts-home-page,
.wdts-home-page * {
	box-sizing: border-box;
}

.wdts-home-page h1,
.wdts-home-page h2,
.wdts-home-page h3,
.wdts-home-page h4 {
	margin: 0;
	font-family: "Noto Serif TC", serif;
	color: var(--wdts-home-heading);
}

.wdts-home-page p,
.wdts-home-page ul,
.wdts-home-page li {
	margin: 0;
	padding: 0;
}

.wdts-home-page ul {
	list-style: none;
}

.wdts-home-page img {
	display: block;
	max-width: 100%;
}

.wdts-home-page a {
	color: inherit;
	text-decoration: none;
}

.wdts-home-shell {
	position: relative;
	z-index: 1;
	width: var(--wdts-home-shell);
	margin: 0 auto;
}

.wdts-home-shell--narrow {
	width: var(--wdts-home-shell-narrow);
}

.wdts-home-shell--cta {
	width: var(--wdts-home-shell-cta);
}

.wdts-home-icon {
	display: block;
	width: 20px;
	height: 20px;
}

.wdts-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.wdts-reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.wdts-delay-1 {
	transition-delay: 100ms;
}

.wdts-delay-2 {
	transition-delay: 200ms;
}

.wdts-delay-3 {
	transition-delay: 300ms;
}

@keyframes wdts-home-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes wdts-home-spin-reverse {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-360deg);
	}
}

.wdts-home-button,
.wdts-home-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 56px;
	padding: 0 34px;
	border-radius: var(--wdts-home-radius-pill);
	font-size: 15px;
	letter-spacing: 0.1em;
	transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.wdts-home-button {
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
	background: var(--wdts-home-gold);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), var(--wdts-home-shadow-primary);
	color: #ffffff !important;
	font-weight: 500;
	text-decoration: none;
}

.wdts-home-page .wdts-home-button,
.wdts-home-page .wdts-home-button:link,
.wdts-home-page .wdts-home-button:visited,
.wdts-home-page .wdts-home-button:hover,
.wdts-home-page .wdts-home-button:focus,
.wdts-home-page .wdts-home-button__label {
	color: #ffffff !important;
}

.wdts-home-button::after {
	content: "";
	position: absolute;
	inset: 0;
	left: -100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.6s ease;
}

.wdts-home-button:hover {
	transform: translateY(-2px);
	background: var(--wdts-home-gold-hover);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 15px 35px -5px rgba(210, 142, 36, 0.45);
}

.wdts-home-button:hover::after {
	left: 100%;
}

.wdts-home-button__label {
	position: relative;
	z-index: 1;
}

.wdts-home-button--light {
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 30px -5px rgba(30, 40, 50, 0.5);
}

.wdts-home-button--light:hover {
	border-color: rgba(255, 255, 255, 0.4);
}

.wdts-home-secondary-button {
	border: 1px solid rgba(111, 134, 164, 0.3);
	background: rgba(255, 255, 255, 0.6);
	box-shadow: var(--wdts-home-shadow-sm);
	color: var(--wdts-home-primary);
	font-weight: 500;
	backdrop-filter: blur(8px);
}

.wdts-home-secondary-button:hover {
	transform: translateY(-2px);
	border-color: var(--wdts-home-primary);
	background: var(--wdts-home-primary);
	box-shadow: 0 12px 26px -14px rgba(83, 107, 138, 0.4);
	color: #ffffff;
}

.wdts-home-secondary-button__icon {
	transition: transform 0.3s ease;
}

.wdts-home-secondary-button:hover .wdts-home-secondary-button__icon {
	transform: translateX(4px);
}

.wdts-home-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(720px, 100vh, 980px);
	padding: clamp(72px, 10vw, 112px) 0 64px;
	overflow: hidden;
	background:
		radial-gradient(700px 420px at 18% 18%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.18) 54%, transparent 74%),
		radial-gradient(760px 520px at 82% 24%, rgba(111, 134, 164, 0.11) 0%, rgba(111, 134, 164, 0.03) 42%, transparent 72%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 34%, rgba(244, 245, 247, 0.92) 100%);
}

.wdts-home-hero::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 96px;
	background: linear-gradient(180deg, transparent 0%, rgba(111, 134, 164, 0.3) 55%, rgba(111, 134, 164, 0.4) 100%);
	transform: translateX(-50%);
}

.wdts-home-hero__glow,
.wdts-home-section__ambient,
.wdts-home-hero__orbit-scene,
.wdts-home-final-cta__scene {
	position: absolute;
	pointer-events: none;
}

.wdts-home-hero__glow--one {
	top: -10%;
	left: -10%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: #ffffff;
	filter: blur(100px);
	mix-blend-mode: overlay;
	opacity: 0.6;
}

.wdts-home-hero__glow--two {
	right: 12%;
	bottom: 8%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: rgba(111, 134, 164, 0.09);
	filter: blur(120px);
	opacity: 0.8;
}

.wdts-home-hero__orbit-scene {
	top: 50%;
	right: -8%;
	width: min(600px, 42vw);
	height: min(600px, 42vw);
	transform: translateY(-50%);
	opacity: 0.4;
}

.wdts-home-hero__orbit,
.wdts-home-diagram__core-ring,
.wdts-home-final-cta__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.wdts-home-hero__orbit--outer {
	border: 1px solid rgba(111, 134, 164, 0.2);
	animation: wdts-home-spin 120s linear infinite;
}

.wdts-home-hero__orbit--middle {
	inset: 40px;
	border: 1px solid rgba(111, 134, 164, 0.12);
	animation: wdts-home-spin-reverse 180s linear infinite;
}

.wdts-home-hero__orbit--inner {
	inset: 80px;
	border: 1px dashed rgba(143, 184, 178, 0.2);
	animation: wdts-home-spin 120s linear infinite;
}

.wdts-home-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

.wdts-home-hero__copy {
	position: relative;
	z-index: 2;
	order: 1;
}

.wdts-home-hero__slide-stack {
	position: relative;
	min-height: 340px;
	height: auto;
	margin-bottom: 40px;
	transition: height 0.7s ease;
}

.wdts-home-hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.wdts-home-hero-slide.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.wdts-home-hero__eyebrow-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.wdts-home-hero__eyebrow-line {
	width: 32px;
	height: 1px;
	flex: 0 0 auto;
	background: var(--wdts-home-gold);
}

.wdts-home-hero__eyebrow {
	font-family: "Noto Serif TC", serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.2em;
	color: var(--wdts-home-gold);
	text-shadow: 0 0 12px rgba(210, 142, 36, 0.14);
}

.wdts-home-hero__title {
	margin: 0 0 32px;
	font-size: clamp(36px, 5vw, 52px);
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.wdts-home-hero__title-line,
.wdts-home-hero__title-highlight {
	display: block;
}

.wdts-home-hero__title-highlight {
	position: relative;
	color: var(--wdts-home-gold);
}

.wdts-home-hero__title-glow {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	background: rgba(210, 142, 36, 0.1);
	filter: blur(22px);
	z-index: -1;
}

.wdts-home-hero__description {
	margin: 0;
	max-width: 28rem;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--wdts-home-secondary);
}

.wdts-home-hero__description-lead {
	display: inline-block;
	margin-bottom: 0.24em;
	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0.02em;
	color: var(--wdts-home-heading);
}

.wdts-home-hero__media {
	order: 2;
}

.wdts-home-hero__media-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--wdts-home-radius-lg);
	background: #ffffff;
	box-shadow: var(--wdts-home-shadow-stacked-lg);
	transition: box-shadow 0.35s ease;
}

.wdts-home-hero__media-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(210, 142, 36, 0.05);
	mix-blend-mode: multiply;
	transition: opacity 0.7s ease;
}

.wdts-home-hero__media-frame:hover .wdts-home-hero__media-overlay {
	opacity: 0;
}

.wdts-home-hero__media-border {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: inherit;
}

.wdts-home-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
}

.wdts-home-hero__image.is-active {
	opacity: 1;
}

.wdts-home-hero__image[data-slide-image="0"] {
	object-position: center 20%;
}

.wdts-home-hero__image[data-slide-image="1"] {
	object-position: center center;
}

.wdts-home-hero__image[data-slide-image="2"] {
	object-position: center 38%;
}

.wdts-home-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 4;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.wdts-home-hero__dot {
	flex: 0 0 auto;
	width: 12px;
	height: 2px;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: var(--wdts-home-radius-pill);
	background: rgba(255, 255, 255, 0.42);
	box-shadow: 0 6px 16px -10px rgba(47, 58, 74, 0.55);
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	transition: width 0.5s ease, background-color 0.5s ease, opacity 0.5s ease;
}

.wdts-home-hero__dot.is-active {
	width: 28px;
	background: rgba(255, 255, 255, 0.92);
}

.wdts-home-section {
	position: relative;
	padding: clamp(88px, 10vw, 128px) 0;
	overflow: hidden;
}

.wdts-home-section--soft {
	background:
		radial-gradient(900px 520px at 0% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.12) 44%, transparent 72%),
		radial-gradient(760px 480px at 100% 10%, rgba(111, 134, 164, 0.08) 0%, rgba(111, 134, 164, 0.02) 42%, transparent 72%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(238, 241, 244, 0.98) 100%);
	border-top: 1px solid var(--wdts-home-divider);
}

.wdts-home-section--base {
	background: var(--wdts-home-base);
}

.wdts-home-section__ambient--corner {
	top: 0;
	right: 0;
	width: 40vw;
	height: 40vw;
	border-radius: 0 0 0 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent);
	opacity: 0.6;
}

.wdts-home-section__ambient--bottom {
	left: 18%;
	bottom: 0;
	width: 500px;
	height: 320px;
	border-radius: 100%;
	background: rgba(111, 134, 164, 0.08);
	filter: blur(100px);
}

.wdts-home-section__ambient--article {
	top: 0;
	right: 22%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	filter: blur(100px);
}

#resonance .wdts-home-section__title,
#path .wdts-home-section__title,
#testimonials .wdts-home-section__title,
#articles .wdts-home-articles__title {
	color: #d28e24;
}

#articles .wdts-home-articles__title-line {
	background: rgba(210, 142, 36, 0.14);
}

.wdts-home-section__intro {
	margin-bottom: 80px;
	text-align: center;
}

.wdts-home-section__eyebrow {
	margin-bottom: 16px;
	font-family: "Noto Serif TC", serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--wdts-home-primary);
}

.wdts-home-section__eyebrow--left {
	text-align: left;
}

.wdts-home-section__title {
	margin-bottom: 24px;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.35;
}

.wdts-home-section__highlight {
	color: var(--wdts-home-gold);
}

.wdts-home-section__divider {
	width: 48px;
	height: 1px;
	margin: 0 auto 24px;
	background: var(--wdts-home-gold);
	box-shadow: 0 0 10px rgba(210, 142, 36, 0.5);
}

.wdts-home-section__description {
	max-width: 42rem;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.85;
	color: var(--wdts-home-secondary);
}

.wdts-home-section__description--compact {
	max-width: none;
	font-size: 16px;
	letter-spacing: 0.02em;
}

.wdts-home-section__description--left {
	max-width: 32rem;
	margin: 0;
	text-align: left;
}

.wdts-home-section__cta,
.wdts-home-articles__footer {
	margin-top: 64px;
	text-align: center;
}

.wdts-home-what-is__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto 80px;
}

.wdts-home-what-is__grid::before {
	content: "";
	position: absolute;
	left: 20%;
	top: 50%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	filter: blur(80px);
	transform: translateY(-50%);
	z-index: 0;
}

.wdts-home-what-is__copy,
.wdts-home-belief-card {
	position: relative;
	z-index: 1;
}

.wdts-home-what-is__heading {
	margin-bottom: 32px;
	font-size: 22px;
	line-height: 1.7;
}

.wdts-home-bullet-list {
	display: grid;
	gap: 24px;
}

.wdts-home-bullet-list__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.wdts-home-bullet-list__dot {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	margin-top: 10px;
	border-radius: 50%;
	background: var(--wdts-home-mint);
	box-shadow: 0 0 8px rgba(143, 184, 178, 0.6);
}

.wdts-home-bullet-list__text {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--wdts-home-text);
}

.wdts-home-belief-card {
	overflow: hidden;
	padding: clamp(40px, 5vw, 56px);
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: var(--wdts-home-radius-lg);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--wdts-home-shadow-stacked);
	backdrop-filter: blur(16px);
}

.wdts-home-belief-card__corner {
	position: absolute;
	width: 24px;
	height: 24px;
	border-color: rgba(111, 134, 164, 0.4);
}

.wdts-home-belief-card__corner--top {
	top: 0;
	left: 0;
	border-top: 2px solid;
	border-left: 2px solid;
	border-top-left-radius: 24px;
}

.wdts-home-belief-card__corner--bottom {
	right: 0;
	bottom: 0;
	border-right: 2px solid;
	border-bottom: 2px solid;
	border-bottom-right-radius: 24px;
}

.wdts-home-belief-card__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
	font-family: "Noto Serif TC", serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wdts-home-caption);
}

.wdts-home-belief-card__eyebrow-line {
	width: 24px;
	height: 1px;
	background: rgba(111, 134, 164, 0.4);
}

.wdts-home-belief-card__quote {
	position: relative;
	margin-bottom: 32px;
	font-size: clamp(26px, 3vw, 32px);
	line-height: 1.6;
	color: var(--wdts-home-gold);
}

.wdts-home-belief-card__quote::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 16px;
	background: rgba(210, 142, 36, 0.05);
	filter: blur(16px);
}

.wdts-home-belief-card__body {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--wdts-home-secondary);
}

#whoweare.wdts-home-section--soft {
	background: #f4f5f7;
	border-top-color: #e7ebf0;
}

#whoweare .wdts-home-section__intro {
	margin-bottom: clamp(88px, 9vw, 128px);
}

#whoweare .wdts-home-section__eyebrow {
	margin-bottom: 28px;
	font-size: 13px;
	letter-spacing: 0.34em;
	color: var(--wdts-home-secondary);
}

#whoweare .wdts-home-section__title {
	margin-bottom: 28px;
	font-size: clamp(30px, 3.4vw, 40px);
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: #36455b;
}

#whoweare .wdts-home-section__highlight {
	position: relative;
	display: inline-block;
	color: #d28e24;
}

#whoweare .wdts-home-section__highlight::after {
	content: "";
	position: absolute;
	left: 0.08em;
	right: 0.06em;
	bottom: -8px;
	height: 3px;
	border-radius: 999px;
	background: rgba(210, 142, 36, 0.5);
}

#whoweare .wdts-home-section__divider {
	display: none;
}

#whoweare .wdts-home-section__description {
	max-width: 44rem;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 2;
	letter-spacing: 0.01em;
	text-align: center;
	color: var(--wdts-home-text);
}

#whoweare .wdts-home-what-is__grid {
	max-width: 1160px;
	margin: 0 auto 96px;
	gap: 56px;
}

#whoweare .wdts-home-what-is__grid::before {
	left: 18%;
	width: 360px;
	height: 360px;
	background: rgba(255, 255, 255, 0.84);
	filter: blur(100px);
}

#whoweare .wdts-home-what-is__heading {
	margin: 0 0 34px;
	font-size: 22px;
	line-height: 1.7;
	letter-spacing: 0.01em;
	color: #36455b;
}

#whoweare .wdts-home-bullet-list {
	gap: 24px;
}

#whoweare .wdts-home-bullet-list__item {
	gap: 20px;
}

#whoweare .wdts-home-bullet-list__dot {
	width: 11px;
	height: 11px;
	margin-top: 12px;
	background: #8fb8b2;
	box-shadow: 0 0 10px rgba(143, 184, 178, 0.38);
}

#whoweare .wdts-home-bullet-list__text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--wdts-home-text);
}

#whoweare .wdts-home-belief-card {
	width: min(100%, 500px);
	max-width: 500px;
	margin-left: auto;
	padding: clamp(38px, 4vw, 56px);
	border-color: rgba(255, 255, 255, 0.96);
	background: rgba(255, 255, 255, 0.96);
	border-radius: 16px;
	box-shadow: 12px 12px 0 0 rgba(111, 134, 164, 0.08), 12px 12px 0 1px rgba(111, 134, 164, 0.08);
	backdrop-filter: none;
}

#whoweare .wdts-home-belief-card__corner {
	width: 24px;
	height: 24px;
	border-color: rgba(83, 107, 138, 0.78);
}

#whoweare .wdts-home-belief-card__corner--top {
	border-top-left-radius: 16px;
}

#whoweare .wdts-home-belief-card__corner--bottom {
	border-bottom-right-radius: 16px;
}

#whoweare .wdts-home-belief-card__eyebrow {
	gap: 12px;
	margin-bottom: 14px;
	letter-spacing: 0.26em;
	color: var(--wdts-home-caption);
}

#whoweare .wdts-home-belief-card__eyebrow-line {
	width: 24px;
	background: rgba(138, 149, 163, 0.72);
}

#whoweare .wdts-home-belief-card__quote {
	margin: 0 0 16px;
	font-size: clamp(26px, 2.15vw, 30px);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #d28e24 !important;
}

#whoweare .wdts-home-belief-card__quote::after {
	background: rgba(255, 255, 255, 0.75);
	filter: blur(18px);
}

#whoweare .wdts-home-belief-card__body {
	max-width: 24ch;
	font-size: 18px;
	line-height: 1.7;
	color: var(--wdts-home-text);
}

.wdts-home-diagram {
	position: relative;
	overflow: hidden;
	max-width: 896px;
	margin: 0 auto;
	padding: 80px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 16px;
	background:
		radial-gradient(circle at top center, rgba(210, 142, 36, 0.08) 0%, rgba(210, 142, 36, 0.02) 34%, transparent 62%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 249, 251, 0.95) 100%);
	box-shadow: 12px 12px 0 0 rgba(111, 134, 164, 0.08), 12px 12px 0 1px rgba(111, 134, 164, 0.15);
	backdrop-filter: blur(8px);
}

.wdts-home-diagram__axis {
	position: absolute;
	background: rgba(231, 235, 240, 0.8);
}

.wdts-home-diagram__axis--vertical {
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	transform: translateX(-50%);
}

.wdts-home-diagram__axis--horizontal {
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	transform: translateY(-50%);
}

.wdts-home-diagram__label {
	position: relative;
	display: inline-block;
	left: 50%;
	margin-bottom: 80px;
	padding: 10px 22px;
	border: 1px solid rgba(210, 142, 36, 0.16);
	border-radius: var(--wdts-home-radius-pill);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.99), rgba(247, 249, 251, 0.92));
	box-shadow: 0 12px 22px -18px rgba(47, 58, 74, 0.35);
	transform: translateX(-50%);
	font-family: "Noto Serif TC", serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #2f3a4a;
}

.wdts-home-diagram__top {
	position: relative;
	display: grid;
	max-width: 600px;
	margin: 0 auto;
	grid-template-columns: 128px minmax(8px, 1fr) 144px minmax(8px, 1fr) 128px;
	align-items: center;
	gap: 8px;
}

.wdts-home-diagram__node {
	width: 100%;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 248, 251, 0.92) 100%);
	box-shadow: 0 16px 30px -24px rgba(47, 58, 74, 0.35), var(--wdts-home-shadow-sm);
	text-align: center;
	backdrop-filter: blur(8px);
}

.wdts-home-diagram__node-badge {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border: 1px solid rgba(111, 134, 164, 0.2);
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 250, 0.94) 100%);
	font-family: "Noto Serif TC", serif;
	font-size: 18px;
	font-weight: 700;
	color: #243140;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.wdts-home-diagram__node-caption {
	margin-top: 20px;
	padding: 8px 12px;
	border: 1px solid rgba(111, 134, 164, 0.14);
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 245, 249, 0.9) 100%);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.08em;
	color: #314254;
	box-shadow: 0 10px 20px -18px rgba(47, 58, 74, 0.3);
}

.wdts-home-diagram__connector {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(111, 134, 164, 0.3), transparent);
}

.wdts-home-diagram__core-wrap {
	position: relative;
	display: grid;
	place-items: center;
	width: 144px;
	height: 144px;
}

.wdts-home-diagram__core-ring--outer {
	border: 1px solid rgba(210, 142, 36, 0.2);
	animation: wdts-home-spin-reverse 180s linear infinite;
	transform: scale(1.1);
}

.wdts-home-diagram__core-ring--inner {
	inset: 8px;
	border: 1px solid rgba(143, 184, 178, 0.4);
	animation: wdts-home-spin 120s linear infinite;
}

.wdts-home-diagram__core {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border: 2px solid var(--wdts-home-gold);
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 237, 0.96) 100%);
	font-family: "Noto Serif TC", serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--wdts-home-gold);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
	box-shadow: var(--wdts-home-shadow-primary);
}

.wdts-home-diagram__flow {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 20px;
	max-width: 280px;
	margin: 64px auto 0;
}

.wdts-home-diagram__flow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -64px;
	bottom: 0;
	width: 1px;
	background: rgba(111, 134, 164, 0.1);
	transform: translateX(-50%);
}

.wdts-home-diagram__step,
.wdts-home-diagram__result {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 12px 32px;
	border: 1px solid rgba(111, 134, 164, 0.16);
	border-radius: var(--wdts-home-radius-pill);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 251, 0.95) 100%);
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #2f3a4a;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
	box-shadow: 0 14px 26px -22px rgba(47, 58, 74, 0.35), var(--wdts-home-shadow-sm);
}

.wdts-home-diagram__arrow {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	padding: 4px 8px;
	border-radius: var(--wdts-home-radius-pill);
	background: rgba(255, 255, 255, 0.5);
	color: var(--wdts-home-primary);
}

.wdts-home-diagram__arrow .wdts-home-icon {
	width: 16px;
	height: 16px;
}

.wdts-home-diagram__result {
	padding-top: 16px;
	padding-bottom: 16px;
	border-color: rgba(83, 107, 138, 0.5);
	background: linear-gradient(90deg, var(--wdts-home-primary-deep), var(--wdts-home-primary));
	color: #ffffff;
	font-family: "Noto Serif TC", serif;
	font-size: 18px;
	box-shadow: 0 10px 20px -5px rgba(83, 107, 138, 0.4);
}

.wdts-home-pattern-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 64px;
}

.wdts-home-pattern-card {
	position: relative;
	overflow: hidden;
	padding: 48px;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: var(--wdts-home-radius-lg);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--wdts-home-shadow-sm);
	backdrop-filter: blur(14px);
	transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.wdts-home-pattern-card:hover {
	transform: translateY(-6px);
	border-color: rgba(111, 134, 164, 0.3);
	box-shadow: var(--wdts-home-shadow-stacked);
}

.wdts-home-pattern-card__number {
	position: absolute;
	right: -8px;
	bottom: -18px;
	font-family: "Noto Serif TC", serif;
	font-size: clamp(120px, 16vw, 180px);
	line-height: 1;
	color: rgba(216, 223, 232, 0.5);
	transition: transform 0.7s ease, color 0.7s ease;
}

.wdts-home-pattern-card:hover .wdts-home-pattern-card__number {
	transform: translate(-12px, -12px);
	color: rgba(111, 134, 164, 0.12);
}

.wdts-home-pattern-card__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 32px;
	border: 1px solid rgba(111, 134, 164, 0.2);
	border-radius: 50%;
	background: linear-gradient(135deg, #ffffff, var(--wdts-home-base));
	color: var(--wdts-home-primary);
	transition: background-color 0.5s ease, color 0.5s ease;
}

.wdts-home-pattern-card__icon .wdts-home-icon {
	width: 22px;
	height: 22px;
	overflow: visible;
}

.wdts-home-pattern-card__icon .wdts-home-icon * {
	vector-effect: non-scaling-stroke;
}

.wdts-home-pattern-card:hover .wdts-home-pattern-card__icon {
	background: linear-gradient(135deg, var(--wdts-home-primary), var(--wdts-home-primary-hover));
	color: #ffffff;
}

.wdts-home-pattern-card__title {
	position: relative;
	z-index: 1;
	margin-bottom: 24px;
	font-size: 30px;
	line-height: 1.5;
}

.wdts-home-pattern-card__divider {
	width: 32px;
	height: 2px;
	margin-bottom: 24px;
	border-radius: 999px;
	background: var(--wdts-home-divider);
	transition: width 0.5s ease, background-color 0.5s ease;
}

.wdts-home-pattern-card:hover .wdts-home-pattern-card__divider {
	width: 64px;
	background: var(--wdts-home-gold);
}

.wdts-home-pattern-card__body {
	position: relative;
	z-index: 1;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.85;
	color: var(--wdts-home-secondary);
}

.wdts-home-pattern-closing {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 56px;
	border-top: 1px solid var(--wdts-home-divider);
	text-align: center;
}

.wdts-home-pattern-closing::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 75%;
	height: 128px;
	border-radius: 999px;
	background: rgba(111, 134, 164, 0.08);
	filter: blur(48px);
	transform: translate(-50%, -50%);
	z-index: 0;
}

.wdts-home-pattern-closing__text {
	position: relative;
	z-index: 1;
	font-size: clamp(26px, 3vw, 32px);
	line-height: 1.7;
}

.wdts-home-pattern-closing__highlight {
	color: var(--wdts-home-gold);
}

.wdts-home-section--path {
	border-top: 1px solid rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.wdts-home-step-grid-wrap {
	position: relative;
}

.wdts-home-step-grid__line {
	display: none;
	position: absolute;
	top: 40px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(111, 134, 164, 0.2), transparent);
}

.wdts-home-step-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

.wdts-home-step-card {
	position: relative;
	text-align: center;
}

a.wdts-home-step-card {
	display: block;
	color: inherit;
	text-decoration: none;
}

.wdts-home-step-card--linked {
	cursor: pointer;
}

.wdts-home-step-card--linked:focus-visible {
	outline: 3px solid rgba(203, 148, 54, 0.45);
	outline-offset: 10px;
	border-radius: 16px;
}

.wdts-home-step-card__badge {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 32px;
	border: 1px solid rgba(111, 134, 164, 0.3);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--wdts-home-shadow-sm);
	font-family: "Noto Serif TC", serif;
	font-size: 32px;
	color: rgba(111, 134, 164, 0.7);
	transition: transform 0.5s ease, border-color 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.wdts-home-step-card:hover .wdts-home-step-card__badge {
	transform: scale(1.1);
	border-width: 2px;
	border-color: var(--wdts-home-primary);
	background: var(--wdts-home-primary);
	color: #ffffff;
}

.wdts-home-step-card--featured .wdts-home-step-card__badge {
	border-width: 2px;
	border-color: var(--wdts-home-gold);
	background: #ffffff;
	box-shadow: var(--wdts-home-shadow-primary);
	color: var(--wdts-home-gold);
}

.wdts-home-step-card--featured:hover .wdts-home-step-card__badge {
	background: var(--wdts-home-gold);
	color: #ffffff;
}

.wdts-home-step-card__title {
	margin-bottom: 16px;
	font-size: 24px;
	line-height: 1.5;
}

.wdts-home-step-card__body {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--wdts-home-secondary);
}

.wdts-home-testimonial-slider {
	--wdts-home-testimonial-gap: 32px;
}

.wdts-home-testimonial-grid {
	position: relative;
}

.wdts-home-testimonial-track {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--wdts-home-testimonial-gap);
}

.wdts-home-testimonial-slider.is-slider .wdts-home-testimonial-grid {
	--wdts-home-testimonial-per-page: 1;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

.wdts-home-testimonial-slider.is-slider .wdts-home-testimonial-grid::-webkit-scrollbar {
	display: none;
}

.wdts-home-testimonial-slider.is-slider .wdts-home-testimonial-track {
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (var(--wdts-home-testimonial-gap) * (var(--wdts-home-testimonial-per-page) - 1))) / var(--wdts-home-testimonial-per-page));
	grid-template-columns: none;
}

.wdts-home-testimonial-slider.is-slider .wdts-home-testimonial-card {
	scroll-snap-align: start;
}

.wdts-home-testimonial-card {
	display: flex;
	flex-direction: column;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: var(--wdts-home-radius-lg);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--wdts-home-shadow-stacked);
	backdrop-filter: blur(10px);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.wdts-home-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--wdts-home-shadow-elegant-hover);
}

.wdts-home-testimonial-card__quote-wrap {
	position: relative;
	overflow: hidden;
	max-height: 18.5rem;
	margin-bottom: 14px;
}

.wdts-home-testimonial-card__quote-wrap::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 92px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.wdts-home-testimonial-card.is-expanded .wdts-home-testimonial-card__quote-wrap {
	max-height: none;
}

.wdts-home-testimonial-card.is-expanded .wdts-home-testimonial-card__quote-wrap::after {
	opacity: 0;
}

.wdts-home-testimonial-card__quote {
	position: relative;
	margin-bottom: 0;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--wdts-home-divider);
	font-size: 15px;
	font-weight: 300;
	font-style: italic;
	line-height: 2;
	color: var(--wdts-home-text);
}

.wdts-home-testimonial-card__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	min-height: 44px;
	margin-bottom: 32px;
	padding: 12px 22px;
	border: 1px solid rgba(83, 107, 138, 0.14);
	border-radius: 999px;
	background: #556f8c;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px -14px rgba(83, 107, 138, 0.65);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #ffffff;
	cursor: pointer;
	transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.wdts-home-testimonial-card__toggle[hidden] {
	display: none;
}

.wdts-home-testimonial-card__toggle:hover {
	transform: translateY(-1px);
	background: #4d6582;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px -18px rgba(83, 107, 138, 0.72);
}

.wdts-home-testimonial-card__toggle:focus-visible {
	outline: 2px solid rgba(83, 107, 138, 0.28);
	outline-offset: 3px;
}

.wdts-home-testimonial-card__toggle-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	transition: transform 0.25s ease;
}

.wdts-home-testimonial-card.is-expanded .wdts-home-testimonial-card__toggle-icon {
	transform: rotate(90deg);
}

.wdts-home-testimonial-card__mark {
	position: absolute;
	left: -12px;
	top: -24px;
	font-family: "Noto Serif TC", serif;
	font-size: 72px;
	line-height: 1;
	color: rgba(111, 134, 164, 0.12);
}

.wdts-home-testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: auto;
}

.wdts-home-testimonial-card__avatar {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--wdts-home-shadow-sm);
}

.wdts-home-testimonial-card__name {
	font-family: "Noto Serif TC", serif;
	font-size: 18px;
	color: var(--wdts-home-heading);
}

.wdts-home-testimonial-card__role {
	margin-top: 4px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--wdts-home-primary);
}

.wdts-home-testimonial-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 32px;
}

.wdts-home-testimonial-slider__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(111, 134, 164, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--wdts-home-primary);
	box-shadow: var(--wdts-home-shadow-sm);
	cursor: pointer;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.wdts-home-testimonial-slider__button:hover:not(:disabled) {
	transform: translateY(-2px);
	background: var(--wdts-home-primary);
	color: #ffffff;
}

.wdts-home-testimonial-slider__button:disabled {
	opacity: 0.4;
	cursor: default;
}

.wdts-home-testimonial-slider__button--prev .wdts-home-testimonial-slider__icon {
	transform: rotate(180deg);
}

.wdts-home-testimonial-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.wdts-home-testimonial-slider__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(111, 134, 164, 0.22);
	cursor: pointer;
	transition: width 0.25s ease, background-color 0.25s ease;
}

.wdts-home-testimonial-slider__dot.is-active {
	width: 24px;
	background: var(--wdts-home-primary);
}

.wdts-home-articles__header {
	margin-bottom: 48px;
}

.wdts-home-articles__title {
	position: relative;
	display: inline-block;
	margin-bottom: 16px;
	font-size: clamp(30px, 4vw, 40px);
	line-height: 1.35;
}

.wdts-home-articles__title-line {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	border-radius: 999px;
	background: rgba(111, 134, 164, 0.12);
	z-index: -1;
}

.wdts-home-article-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}

.wdts-home-article-card {
	display: block;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: var(--wdts-home-radius-lg);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--wdts-home-shadow-sm);
	backdrop-filter: blur(10px);
	transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.wdts-home-article-card:hover {
	transform: translateY(-6px);
	border-color: rgba(111, 134, 164, 0.22);
	box-shadow: var(--wdts-home-shadow-stacked-lg);
}

.wdts-home-article-card__media {
	position: relative;
	overflow: hidden;
	background: var(--wdts-home-base);
}

.wdts-home-article-card__overlay,
.wdts-home-article-card__frame {
	position: absolute;
	inset: 0;
	z-index: 2;
	transition: background-color 0.5s ease, inset 0.5s ease, border-color 0.5s ease;
}

.wdts-home-article-card__overlay {
	background: rgba(210, 142, 36, 0.05);
}

.wdts-home-article-card:hover .wdts-home-article-card__overlay {
	background: transparent;
}

.wdts-home-article-card__frame {
	inset: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
}

.wdts-home-article-card:hover .wdts-home-article-card__frame {
	inset: 12px;
	border-color: rgba(255, 255, 255, 0.82);
}

.wdts-home-article-card__image {
	display: block;
	width: 100%;
	height: auto;
	transition: filter 0.5s ease;
}

.wdts-home-article-card__content {
	padding: 32px;
}

.wdts-home-article-card__title {
	margin-bottom: 24px;
	font-size: 19px;
	line-height: 1.65;
	transition: color 0.3s ease;
}

.wdts-home-article-card:hover .wdts-home-article-card__title {
	color: var(--wdts-home-primary);
}

.wdts-home-article-card__divider {
	width: 32px;
	height: 2px;
	border-radius: 999px;
	background: var(--wdts-home-divider);
	transition: width 0.5s ease, background-color 0.5s ease;
}

.wdts-home-article-card:hover .wdts-home-article-card__divider {
	width: 64px;
	background: var(--wdts-home-gold);
}

.wdts-home-final-cta {
	position: relative;
	overflow: hidden;
	padding: 128px 0;
	background: var(--wdts-home-primary-deep);
}

.wdts-home-final-cta__scene {
	right: -10%;
	bottom: -22%;
	width: min(500px, 40vw);
	height: min(500px, 40vw);
	opacity: 0.1;
	mix-blend-mode: screen;
}

.wdts-home-final-cta__ring--outer {
	border: 1px solid rgba(255, 255, 255, 0.9);
	animation: wdts-home-spin 120s linear infinite;
}

.wdts-home-final-cta__ring--inner {
	inset: 30px;
	border: 1px dashed rgba(255, 255, 255, 0.82);
	animation: wdts-home-spin-reverse 180s linear infinite;
}

.wdts-home-final-cta__ring--glow {
	inset: 60px;
	background: rgba(255, 255, 255, 0.05);
	filter: blur(40px);
}

.wdts-home-final-cta__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.wdts-home-final-cta .wdts-home-final-cta__title {
	margin-bottom: 40px;
	font-size: 30px;
	line-height: 1.5;
	color: #ffffff;
	text-shadow: 0 4px 10px rgba(30, 40, 50, 0.28);
}

.wdts-home-final-cta .wdts-home-button--light {
	width: 100%;
	padding: 20px 48px;
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 30px -5px rgba(30, 40, 50, 0.5);
}

@media (min-width: 768px) {
	.wdts-home-pattern-grid,
	.wdts-home-article-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wdts-home-testimonial-slider:not(.is-slider) .wdts-home-testimonial-track {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wdts-home-testimonial-slider.is-slider .wdts-home-testimonial-grid {
		--wdts-home-testimonial-per-page: 2;
	}

	.wdts-home-final-cta .wdts-home-button--light {
		width: auto;
	}

	.wdts-home-final-cta .wdts-home-final-cta__title {
		font-size: 36px;
		margin-bottom: 48px;
	}

	.wdts-home-step-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 56px 32px;
	}
}

@media (min-width: 1024px) {
	.wdts-home-hero {
		padding-top: calc(clamp(72px, 10vw, 112px) - 40px);
	}

	.wdts-home-hero__grid {
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		gap: 64px;
	}

	.wdts-home-hero__copy {
		order: 2;
	}

	.wdts-home-hero__media {
		order: 1;
	}

	.wdts-home-hero__description {
		max-width: 34rem;
		font-size: 20px;
		font-weight: 400;
		line-height: 1.9;
		color: var(--wdts-home-text);
	}

	.wdts-home-what-is__grid {
		grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
		gap: 64px;
		align-items: center;
	}

	#whoweare .wdts-home-what-is__grid {
		grid-template-columns: minmax(0, 4.6fr) minmax(0, 5.4fr);
		gap: 84px;
		align-items: start;
	}

	#whoweare .wdts-home-what-is__copy {
		padding-top: 92px;
	}

	#whoweare .wdts-home-belief-card__body {
		margin-left: 0;
		margin-right: auto;
		text-align: left;
	}

	.wdts-home-section__description,
	#whoweare .wdts-home-section__description {
		max-width: 48rem;
		font-size: 20px;
		font-weight: 400;
		line-height: 1.9;
		color: var(--wdts-home-text);
	}

	.wdts-home-section__description--compact {
		font-size: 20px;
		line-height: 1.85;
	}

	#path .wdts-home-section__intro {
		display: grid;
		justify-items: center;
	}

	#path .wdts-home-section__description--compact {
		width: fit-content;
		max-width: min(100%, 32ch);
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.wdts-home-bullet-list__text,
	.wdts-home-pattern-card__body,
	.wdts-home-step-card__body {
		font-size: 19px;
		line-height: 1.9;
		color: var(--wdts-home-secondary);
	}

	.wdts-home-diagram {
		max-width: 1080px;
		padding: 96px 104px;
	}

	.wdts-home-diagram__label {
		margin-bottom: 96px;
		padding: 16px 40px;
		font-size: 16px;
		letter-spacing: 0.24em;
	}

	.wdts-home-diagram__top {
		max-width: 760px;
		grid-template-columns: 176px minmax(16px, 1fr) 204px minmax(16px, 1fr) 176px;
		gap: 12px;
	}

	.wdts-home-diagram__node {
		padding: 14px 12px 16px;
		border-radius: 18px;
	}

	.wdts-home-diagram__node-badge {
		width: 108px;
		height: 108px;
		font-size: 26px;
	}

	.wdts-home-diagram__node-caption {
		margin-top: 24px;
		padding: 12px 18px;
		border-radius: 18px;
		font-size: 18px;
		letter-spacing: 0.06em;
	}

	.wdts-home-diagram__core-wrap {
		width: 204px;
		height: 204px;
	}

	.wdts-home-diagram__core {
		font-size: 28px;
		letter-spacing: 0.12em;
	}

	.wdts-home-diagram__flow {
		max-width: 360px;
		margin-top: 76px;
		gap: 24px;
	}

	.wdts-home-diagram__step,
	.wdts-home-diagram__result {
		padding: 16px 36px;
		font-size: 18px;
		letter-spacing: 0.08em;
	}

	.wdts-home-diagram__result {
		font-size: 22px;
	}

	.wdts-home-pattern-grid {
		gap: 32px;
	}

	.wdts-home-step-grid__line {
		display: block;
	}

	.wdts-home-step-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 32px;
	}

	.wdts-home-articles__header {
		text-align: left;
	}

	.wdts-home-final-cta {
		padding: 160px 0;
	}

	.wdts-home-final-cta .wdts-home-final-cta__title {
		font-size: 40px;
		margin-bottom: 56px;
	}
}

@media (min-width: 1200px) {
	.wdts-home-testimonial-slider.is-slider .wdts-home-testimonial-grid {
		--wdts-home-testimonial-per-page: 3;
	}
}

@media (max-width: 1023px) {
	.wdts-home-hero__orbit-scene {
		right: -12%;
		width: min(460px, 58vw);
		height: min(460px, 58vw);
		opacity: 0.34;
	}

	.wdts-home-diagram__top {
		grid-template-columns: 128px minmax(8px, 1fr) 144px minmax(8px, 1fr) 128px;
		gap: 8px;
		justify-items: stretch;
	}

	#whoweare .wdts-home-what-is__copy {
		padding-top: 0;
	}

	#whoweare .wdts-home-section__description {
		font-size: 18px;
		line-height: 1.9;
	}

	#whoweare .wdts-home-bullet-list__text {
		font-size: 18px;
		line-height: 1.8;
	}

	#whoweare .wdts-home-belief-card__body {
		font-size: 18px;
		line-height: 1.8;
	}

	.wdts-home-diagram__connector {
		width: auto;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(111, 134, 164, 0.3), transparent);
	}
}

@media (min-width: 1024px) {
	.wdts-home-hero__eyebrow {
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.wdts-home-page {
		--wdts-home-shell: min(100% - 32px, 1280px);
		--wdts-home-shell-narrow: min(100% - 32px, 1040px);
		--wdts-home-shell-cta: min(100% - 32px, 900px);
	}

	.wdts-home-hero {
		min-height: auto;
		padding-top: 64px;
	}

	.wdts-home-hero::after {
		display: none;
	}

	.wdts-home-hero__orbit-scene {
		top: 64px;
		right: -88px;
		width: 304px;
		height: 304px;
		transform: none;
		opacity: 0.3;
	}

	.wdts-home-hero__slide-stack {
		min-height: 200px;
		margin-bottom: 24px;
	}

	.wdts-home-hero__description {
		max-width: none;
		font-size: 16px;
	}

		.wdts-home-hero__media-frame {
			min-height: 0;
			box-shadow: 12px 12px 0 0 rgba(111, 134, 164, 0.06), 12px 12px 0 1px rgba(111, 134, 164, 0.12);
		}

		#whoweare .wdts-home-section__intro {
			margin-bottom: 72px;
		}

		#whoweare .wdts-home-section__eyebrow {
			margin-bottom: 22px;
			font-size: 12px;
			letter-spacing: 0.28em;
		}

		#whoweare .wdts-home-section__title {
			margin-bottom: 22px;
			font-size: clamp(34px, 9.5vw, 48px);
		}

		#whoweare .wdts-home-section__highlight::after {
			bottom: -6px;
			height: 2px;
		}

		#whoweare .wdts-home-section__description {
			font-size: 18px;
			line-height: 1.9;
		}

		#whoweare .wdts-home-what-is__grid {
			margin-bottom: 72px;
			gap: 40px;
		}

		#whoweare .wdts-home-what-is__heading {
			margin-bottom: 28px;
			font-size: 24px;
		}

		#whoweare .wdts-home-bullet-list {
			gap: 24px;
		}

		#whoweare .wdts-home-bullet-list__dot {
			width: 9px;
			height: 9px;
			margin-top: 9px;
		}

		#whoweare .wdts-home-bullet-list__text {
			font-size: 18px;
			line-height: 1.8;
		}

		#whoweare .wdts-home-belief-card {
			padding: 36px 30px 40px;
			box-shadow: 12px 12px 0 0 rgba(111, 134, 164, 0.08), 12px 12px 0 1px rgba(111, 134, 164, 0.08);
		}

		#whoweare .wdts-home-belief-card__eyebrow {
			margin-bottom: 14px;
		}

		#whoweare .wdts-home-belief-card__quote {
			font-size: 26px;
		}

		#whoweare .wdts-home-belief-card__body {
			max-width: none;
			font-size: 18px;
			line-height: 1.8;
		}

		.wdts-home-testimonial-card__quote-wrap {
			max-height: 15rem;
		}

		.wdts-home-testimonial-slider__nav {
			gap: 12px;
			margin-top: 24px;
		}

		.wdts-home-testimonial-slider__button {
			width: 40px;
			height: 40px;
		}

		.wdts-home-diagram {
			padding: 16px;
			border-radius: 16px;
		}

		.wdts-home-diagram__axis--horizontal {
			display: none;
		}

		.wdts-home-diagram__label {
			margin-bottom: 48px;
			padding: 0 8px;
		}

		.wdts-home-diagram__top {
			max-width: 100%;
			grid-template-columns: 80px minmax(8px, 1fr) 96px minmax(8px, 1fr) 80px;
			gap: 4px;
		}

		.wdts-home-diagram__node {
			padding: 4px;
			border-radius: 12px;
		}

		.wdts-home-diagram__node-badge {
			width: 48px;
			height: 48px;
			font-size: 12px;
		}

		.wdts-home-diagram__node-caption {
			margin-top: 8px;
			font-size: 10px;
			line-height: 1.3;
		}

		.wdts-home-diagram__connector {
			width: auto;
			height: 1px;
			background: linear-gradient(90deg, transparent, rgba(111, 134, 164, 0.3), transparent);
		}

		.wdts-home-diagram__core-wrap {
			width: 96px;
			height: 96px;
		}

		.wdts-home-diagram__core-ring--inner {
			inset: 6px;
		}

		.wdts-home-diagram__core {
			font-size: 13px;
			letter-spacing: 0.1em;
		}

		.wdts-home-diagram__flow {
			gap: 16px;
			margin-top: 40px;
		}

		.wdts-home-diagram__flow::before {
			top: -40px;
		}

		.wdts-home-diagram__step {
			padding: 10px 24px;
			font-size: 13px;
		}

		.wdts-home-diagram__arrow {
			padding: 4px;
		}

		.wdts-home-diagram__arrow .wdts-home-icon {
			width: 12px;
			height: 12px;
		}

		.wdts-home-diagram__result {
			padding: 14px 24px;
			font-size: 15px;
		}

		.wdts-home-hero__dots {
			bottom: 18px;
			gap: 6px;
	}

	.wdts-home-hero__dot {
		width: 10px;
	}

	.wdts-home-hero__dot.is-active {
		width: 22px;
	}

	.wdts-home-what-is__grid::before,
	.wdts-home-section__ambient--corner,
	.wdts-home-section__ambient--article {
		display: none;
	}

		.wdts-home-pattern-card,
		.wdts-home-testimonial-card,
		.wdts-home-article-card__content,
		.wdts-home-belief-card,
		.wdts-home-diagram {
			padding-left: 32px;
			padding-right: 32px;
		}

		#whoweare .wdts-home-diagram {
			padding-left: 16px;
			padding-right: 16px;
		}

		.wdts-home-pattern-card__title {
			font-size: 26px;
	}

	.wdts-home-final-cta__scene {
		right: -64px;
		bottom: -96px;
		width: 288px;
		height: 288px;
	}

	.wdts-home-final-cta {
		padding: 128px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wdts-reveal,
	.wdts-home-hero-slide,
	.wdts-home-hero__image,
	.wdts-home-button,
	.wdts-home-button::after,
	.wdts-home-secondary-button,
	.wdts-home-pattern-card,
	.wdts-home-testimonial-card,
	.wdts-home-article-card,
	.wdts-home-step-card__badge,
	.wdts-home-article-card__image,
	.wdts-home-article-card__frame,
	.wdts-home-article-card__overlay,
	.wdts-home-hero__dot {
		transition: none !important;
	}

	.wdts-home-hero__orbit,
	.wdts-home-diagram__core-ring,
	.wdts-home-final-cta__ring {
		animation: none !important;
	}
}

.wdts-home-shortcode-active .content-area {
	margin-top: 0;
	margin-bottom: 0;
}

.wdts-home-shortcode-active .content-container.site-container,
.wdts-home-shortcode-active .content-wrap,
.wdts-home-shortcode-active .site-main,
.wdts-home-shortcode-active .entry-content,
.wdts-home-shortcode-active .entry-content-wrap,
.wdts-home-shortcode-active article.entry {
	margin: 0;
	max-width: none;
	padding: 0;
}

.wdts-home-shortcode-active .entry.single-entry {
	background: transparent;
	box-shadow: none;
}

.wdts-home-shortcode-active .entry-content.single-content {
	margin: 0;
	padding: 0;
}

.wdts-home-shortcode-active .entry-content .wdts-home-page,
.wdts-home-shortcode-active .entry-content > .wdts-home-page:first-child {
	margin-top: 0;
}
