/* ========== 内联 Tailwind CSS 工具类 (按需提取) ========== */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif
}

body {
	margin: 0;
	line-height: inherit
}

a {
	color: inherit;
	text-decoration: inherit
}

b,
strong {
	font-weight: bolder
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0
}

button {
	text-transform: none;
	cursor: pointer
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle
}

.flex {
	display: flex
}

.grid {
	display: grid
}

.inline-flex {
	display: inline-flex
}

.items-center {
	align-items: center
}

.items-start {
	align-items: flex-start
}

.justify-center {
	justify-content: center
}

.justify-between {
	justify-content: space-between
}

.flex-col {
	flex-direction: column
}

.flex-1 {
	flex: 1 1 0%
}

.gap-2 {
	gap: 0.5rem
}

.gap-3 {
	gap: 0.75rem
}

.gap-4 {
	gap: 1rem
}

.gap-6 {
	gap: 1.5rem
}

.space-y-4> :not([hidden])~ :not([hidden]) {
	margin-top: 1rem
}

.text-center {
	text-align: center
}

.relative {
	position: relative
}

.absolute {
	position: absolute
}

.z-0 {
	z-index: 0
}

.z-10 {
	z-index: 10
}

.w-1\.5 {
	width: 0.375rem
}

.w-2 {
	width: 0.5rem
}

.h-1\.5 {
	height: 0.375rem
}

.h-2 {
	height: 0.5rem
}

.w-5 {
	width: 1.25rem
}

.h-5 {
	height: 1.25rem
}

.w-8 {
	width: 2rem
}

.h-8 {
	height: 2rem
}

.w-full {
	width: 100%
}

.max-w-6xl {
	max-width: var(--content-width)
}

.max-w-2xl {
	max-width: 42rem
}

.min-h-screen {
	min-height: 100vh
}

.min-h-\[380px\] {
	min-height: 380px
}

.p-4 {
	padding: 1rem
}

.p-5 {
	padding: 1.25rem
}

.p-6 {
	padding: 1.5rem
}

.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem
}

.pt-6 {
	padding-top: 1.5rem
}

.mt-1 {
	margin-top: 0.25rem
}

.mt-4 {
	margin-top: 1rem
}

.mt-6 {
	margin-top: 1.5rem
}

.mt-auto {
	margin-top: auto
}

.mt-12 {
	margin-top: 3rem
}

.mb-3 {
	margin-bottom: 0.75rem
}

.mb-6 {
	margin-bottom: 1.5rem
}

.mb-8 {
	margin-bottom: 2rem
}

.mb-14 {
	margin-bottom: 3.5rem
}

.mx-auto {
	margin-left: auto;
	margin-right: auto
}

.mt-0\.5 {
	margin-top: 0.125rem
}

.text-white {
	color: #fff
}

.text-slate-300 {
	color: #cbd5e1
}

.text-slate-400 {
	color: #94a3b8
}

.text-slate-500 {
	color: #64748b
}

.text-cyan-400 {
	color: #22D3EE
}

.text-red-400 {
	color: #f87171
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem
}

.text-base {
	font-size: 1rem;
	line-height: 1.5rem
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem
}

.font-bold {
	font-weight: 700
}

.font-semibold {
	font-weight: 600
}

.tracking-tight {
	letter-spacing: -0.025em
}

.leading-relaxed {
	line-height: 1.625
}

.bg-red-400 {
	background-color: #f87171
}

.bg-red-500\/60 {
	background-color: rgba(239, 68, 68, 0.6)
}

.bg-cyan-400 {
	background-color: #22D3EE
}

.bg-white\/\[0\.02\] {
	background-color: rgba(255, 255, 255, 0.02)
}

.bg-transparent {
	background-color: transparent
}

.border {
	border-width: 1px
}

.border-t {
	border-top-width: 1px
}

.border-white\/5 {
	border-color: rgba(255, 255, 255, 0.05)
}

.border-white\/10 {
	border-color: rgba(255, 255, 255, 0.1)
}

.rounded-full {
	border-radius: 9999px
}

.rounded-2xl {
	border-radius: 1rem
}

.backdrop-blur-sm {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px)
}

.animate-pulse {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: .5
	}
}

.bg-gradient-to-r {
	background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.from-cyan-400 {
	--tw-gradient-from: #22D3EE;
	--tw-gradient-to: rgba(34, 211, 238, 0);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.to-blue-400 {
	--tw-gradient-to: #60a5fa
}

.bg-clip-text {
	-webkit-background-clip: text;
	background-clip: text
}

.text-transparent {
	color: transparent
}

.shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-2xl {
	--tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width: 640px) {
	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}
}

@media (min-width: 768px) {
	.md\:text-lg {
		font-size: 1.125rem;
		line-height: 1.75rem
	}

	.md\:text-base {
		font-size: 1rem;
		line-height: 1.5rem
	}

	.md\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem
	}

	.md\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem
	}

	.md\:p-8 {
		padding: 2rem
	}

	.md\:p-6 {
		padding: 1.5rem
	}

	.md\:p-20 {
		padding: 5rem
	}

	.md\:mb-20 {
		margin-bottom: 5rem
	}

	.md\:gap-8 {
		gap: 2rem
	}

	.md\:gap-5 {
		gap: 1.25rem
	}
}

@media (min-width: 1024px) {
	.lg\:text-5xl {
		font-size: 3rem;
		line-height: 1
	}

	.lg\:flex-row {
		flex-direction: row
	}
}

/* ========== 自定义样式 ========== */
:root {
	--cyan: #22D3EE;
	--cyan-glow: rgba(34, 211, 238, 0.7);
	--danger: #ef4444;
}

/* 强制布局样式 */
#riskCard {
	min-height: 380px;
}

.secure-card-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 1rem;
}

@media (min-width: 640px) {
	.secure-card-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (min-width: 1024px) {
	.compare-layout {
		flex-direction: row !important;
	}
}

body {
	background-color: #020617;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* 移除背景发光效果 */
.isp-three-heading-en,
.isp-three-subtitle-en {
	max-width: min(100%, 1180px);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

@media (min-width: 1024px) {
	.isp-three-heading-en,
	.isp-three-subtitle-en {
		white-space: nowrap;
	}
}

.bg-glow {
	display: none;
}

.glass-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1rem;
	position: relative;
	transition: transform 0.15s ease-out, box-shadow 0.4s ease;
}

.glass-card:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 211, 238, 0.2);
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.9rem;
	border-radius: 9999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.badge-danger {
	background: rgba(239, 68, 68, 0.15);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-secure {
	background: rgba(34, 211, 238, 0.12);
	color: #67e8f9;
	border: 1px solid rgba(34, 211, 238, 0.35);
}

.glass-card .card-content {
	transition: transform 0.15s ease-out;
}

.flex-shrink-0 {
	flex-shrink: 0
}

.h-full {
	height: 100%
}
