@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@100..700&display=swap');

:root {
	--primary: #2e5bff;
	--primary-hover: #1b42d8;
	--accent-cyan: #00f0ff;
	--background-light: #f5f8f8;
	--background-dark: #0a0c14;
	--surface-dark: #11141f;
	--surface-darker: #05060a;
	--border-dark: #1e2536;
	--text-dim: #94a3b8;
}

:root :where(.is-layout-flow) > * {
    margin-block-start: 0;
    margin-block-end: 0;
}

body {
	font-family: 'Syne', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
	font-family: 'Syne', sans-serif;
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

.idenq-page {
	background-color: var(--background-dark);
	color: #e2e8f0;
	min-height: 100vh;
	overflow-x: hidden;
}

.idenq-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.home .entry-header,
.home .page-header,
.home .entry-title,
.home .page-title {
	display: none;
}

.site-header.idenq-site-header,
.home .site-main,
.home .content-area,
.home .page-content {
	max-width: none;
	width: 100%!important;
	max-width: 100%!important;
	min-width: 100%!important;
	padding: 0;
	margin: 0;
}


.site-header.idenq-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(30, 37, 54, 0.5);
	background: rgba(10, 12, 20, 0.85);
	backdrop-filter: blur(20px);
}

.site-header.idenq-site-header .layout-container {
	display: flex;
	justify-content: center;
	width: 100%;
}

.idenq-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	max-width: 1280px;
	padding: 1rem 1.5rem;
}

.idenq-site-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.idenq-site-header__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.idenq-site-header__logo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(46, 91, 255, 0.12);
}

.idenq-site-header__logo:hover {
	transform: translateY(-1px);
}

.idenq-site-header__logo .material-symbols-outlined {
	opacity: 0;
}

.idenq-site-header__logo-image {
	position: relative;
	z-index: 1;
	height: auto;
	filter: drop-shadow(0 0 6px rgba(46, 91, 255, 0.35));
	transition: filter 0.2s ease;
}

.idenq-site-header__logo:hover .idenq-site-header__logo-image {
	filter: drop-shadow(0 0 12px rgba(46, 91, 255, 0.55));
}

.idenq-page {
	position: relative;
	overflow-x: hidden;
}

.idenq-mouse-glow {
	position: fixed;
	top: 0;
	left: 0;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(46, 91, 255, 0.35), rgba(46, 91, 255, 0) 70%);
	pointer-events: none;
	opacity: 0;
	z-index: 1;
	mix-blend-mode: screen;
	transform: translate(-9999px, -9999px);
	will-change: transform, opacity;
}

.idenq-site-header__title {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.idenq-site-header__nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

.idenq-site-header__nav a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
}

.idenq-site-header__nav a:hover {
	color: #ffffff;
}

.idenq-site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.idenq-site-header__status {
	display: none;
	align-items: center;
	gap: 0.5rem;
	padding: 0.2rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(30, 37, 54, 0.6);
	background: var(--surface-dark);
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #94a3b8;
}

.idenq-site-header__pulse {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--accent-cyan);
	box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
	animation: pulse 2s ease-in-out infinite;
}

.idenq-site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 1.5rem;
	border-radius: 0.75rem;
	background: var(--primary);
	color: #ffffff;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 700;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.idenq-site-header__cta:hover {
	background: var(--primary-hover);
	box-shadow: 0 0 20px rgba(46, 91, 255, 0.4);
}

@media (min-width: 768px) {
	.idenq-site-header__nav {
		display: flex;
	}

	.idenq-site-header__status {
		display: inline-flex;
	}
}

.idenq-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding-top: 5rem;
}

.idenq-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.bg-grid {
	background-size: 50px 50px;
	background-image: linear-gradient(to right, rgba(46, 91, 255, 0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(46, 91, 255, 0.03) 1px, transparent 1px);
}

.dark .bg-grid {
	background-image: linear-gradient(to right, rgba(46, 91, 255, 0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(46, 91, 255, 0.05) 1px, transparent 1px);
}

.dna-gradient-text {
	background: linear-gradient(135deg, #ffffff 0%, #2e5bff 50%, #00f0ff 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.dna-gradient-text .idenq-crypto-char {
	background: linear-gradient(135deg, #ffffff 0%, #2e5bff 50%, #00f0ff 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.idenq-section {
	width: 100%;
	padding: 5rem 0;
	position: relative;
}

.idenq-section--stats,
.idenq-section--products,
.idenq-section--team {
	background: var(--surface-dark);
	border-top: 1px solid var(--border-dark);
	border-bottom: 1px solid var(--border-dark);
}

.idenq-section--stats::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to right, rgba(30, 37, 54, 0.6) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(30, 37, 54, 0.6) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.12;
	pointer-events: none;
}

.idenq-section--stats > .idenq-container {
	position: relative;
	z-index: 1;
}

.idenq-section--wallets {
	background: var(--surface-darker);
	border-top: 1px solid var(--border-dark);
	border-bottom: 1px solid var(--border-dark);
}

.idenq-section__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	line-height: 1.15;
	color: #ffffff;
}

.idenq-section__title.is-center {
	text-align: center;
}

.idenq-section__subtitle {
	margin: 0 0 2.5rem;
	font-size: 1rem;
	color: var(--text-dim);
}

.idenq-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

.idenq-section__link:hover {
	color: #ffffff;
}

.idenq-hero {
	width: 100%;
	max-width: 1280px;
	padding: 3rem 1.5rem;
	position: relative;
}

.idenq-hero__columns {
	align-items: center;
	gap: 3rem;
	margin: 0;
}

.idenq-hero__content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.idenq-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(46, 91, 255, 0.3);
	background: rgba(46, 91, 255, 0.08);
}

.idenq-pill__text {
	margin: 0;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
}

.idenq-pill .material-symbols-outlined {
	font-size: 16px;
	color: var(--primary);
}

.idenq-hero__title {
	margin: 0;
	font-size: clamp(2.75rem, 5vw, 4rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #ffffff;
	perspective: 900px;
}

.idenq-crypto-char {
	display: inline-block;
	transform-origin: 50% 60%;
	backface-visibility: hidden;
	will-change: transform;
	font-variant-ligatures: none;
}

.idenq-hero__copy {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--text-dim);
	max-width: 36rem;
}

.idenq-hero__buttons {
	gap: 1rem;
	flex-wrap: wrap;
}

.idenq-btn .wp-block-button__link {
	padding: 0.75rem 2rem;
	border-radius: 0.75rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.idenq-btn--primary .wp-block-button__link {
	background: var(--primary);
	color: #ffffff;
}

.idenq-btn--primary .wp-block-button__link:hover {
	background: var(--primary-hover);
	box-shadow: 0 0 20px rgba(46, 91, 255, 0.5);
}

.idenq-btn--ghost .wp-block-button__link {
	background: var(--surface-dark);
	color: #ffffff;
	border-color: var(--border-dark);
}

.idenq-btn--ghost .wp-block-button__link:hover {
	background: var(--border-dark);
}

.idenq-btn--light .wp-block-button__link {
	background: #ffffff;
	color: #000000 !important;
}

.idenq-btn--light .wp-block-button__link:hover {
	background: #e2e8f0;
}

.idenq-hero__media {
	position: relative;
	width: 100%;
	max-width: 600px;
}

.idenq-hero__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 0.9rem;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.idenq-hero__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(46, 91, 255, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(46, 91, 255, 0.1) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
	z-index: 1;
}

.idenq-hero__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.7;
	mix-blend-mode: luminosity;
	transition: opacity 0.6s ease, mix-blend-mode 0.6s ease;
	z-index: 0;
}

.idenq-hero__frame:hover .idenq-hero__image {
	opacity: 0.9;
	mix-blend-mode: normal;
}

.idenq-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 16, 34, 0.35);
	z-index: 2;
	pointer-events: none;
}

.idenq-hero__panel {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	background: rgba(10, 12, 20, 0.9);
	border: 1px solid var(--border-dark);
	backdrop-filter: blur(12px);
}

.idenq-hero__panel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 0.5rem;
	background: rgba(46, 91, 255, 0.12);
	border: 1px solid rgba(46, 91, 255, 0.3);
	color: var(--primary);
}

.idenq-hero__panel-icon .material-symbols-outlined {
	animation: pulse 2s ease-in-out infinite;
}

.idenq-hero__panel-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.idenq-hero__panel-label {
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
}

.idenq-hero__panel-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
}

.idenq-hero__panel-status {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--accent-cyan);
}

.idenq-hero__panel-scan {
	font-size: 0.6rem;
	letter-spacing: 0.15em;
	font-family: 'Syne', sans-serif;
}

.idenq-hero__panel-status .material-symbols-outlined {
	font-size: 16px;
	animation: spin 2.4s linear infinite;
}

.idenq-hero__badge {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	background: rgba(10, 12, 20, 0.85);
	border: 1px solid rgba(46, 91, 255, 0.3);
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	font-weight: 700;
	color: #ffffff;
}

.idenq-hero__badge-dot {
	position: relative;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--primary);
}

.idenq-hero__badge-dot::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 999px;
	background: rgba(46, 91, 255, 0.4);
	animation: ping 1.6s ease-out infinite;
}

.idenq-hero__glow {
	position: absolute;
	width: 288px;
	height: 288px;
	border-radius: 999px;
	filter: blur(120px);
	pointer-events: none;
	background: rgba(46, 91, 255, 0.2);
}

.idenq-hero__glow--top {
	top: -2.5rem;
	right: -2.5rem;
}

.idenq-hero__glow--bottom {
	bottom: -2.5rem;
	left: -2.5rem;
	background: rgba(37, 99, 235, 0.15);
}

.idenq-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2.5rem;
	text-align: center;
}

.idenq-stat__value {
	margin: 0 0 0.5rem;
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	color: #ffffff;
}

.idenq-stat__label {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	color: var(--primary);
	font-weight: 600;
}

.idenq-stat__note {
	margin: 0;
	font-size: 0.95rem;
	color: #7c8aa5;
}

.idenq-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin: 2.5rem 0 2rem;
}

.idenq-step {
	position: relative;
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid var(--border-dark);
	background: rgba(17, 20, 31, 0.9);
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.idenq-step:hover {
	border-color: rgba(46, 91, 255, 0.5);
	transform: translateY(-4px);
}

.idenq-step__number {
	position: absolute;
	top: -0.75rem;
	left: -0.75rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: var(--background-dark);
	border: 1px solid var(--border-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
	letter-spacing: 0.1em;
}

.idenq-step__icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	border: 1px solid var(--border-dark);
	background: rgba(10, 12, 20, 0.85);
	color: #ffffff;
	margin-bottom: 1.25rem;
}

.idenq-step__title {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	color: #ffffff;
}

.idenq-step__copy {
	margin: 0;
	color: var(--text-dim);
	font-size: 0.95rem;
}

.idenq-callout {
	margin-top: 2.5rem;
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(46, 91, 255, 0.25);
	background: rgba(46, 91, 255, 0.06);
	text-align: center;
}

.idenq-callout__text {
	margin: 0;
	color: #cbd5f5;
	font-size: 1rem;
}

.idenq-callout__highlight {
	color: #ffffff;
	font-weight: 700;
}

.idenq-callout__accent {
	color: var(--primary);
	font-weight: 700;
}

.idenq-callout__link {
	margin-top: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary);
	text-decoration: none;
	font-family: 'Syne', sans-serif;
}

.idenq-callout__link:hover {
	color: #ffffff;
}

.idenq-wallets__header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.idenq-wallets__cta {
	margin: 0;
}

.idenq-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.idenq-feature-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: 0.85rem;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	color: #d1d9ee;
	font-weight: 500;
}

.idenq-feature-card .material-symbols-outlined {
	color: var(--primary);
	font-size: 24px;
}

.idenq-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem 3rem;
	margin-top: 2.5rem;
}

.idenq-trust-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.idenq-trust-card h3 {
	margin: 0;
	font-size: 1.1rem;
	color: #ffffff;
}

.idenq-trust-card p {
	margin: 0;
	color: var(--text-dim);
	font-size: 0.95rem;
}

.idenq-trust-card .material-symbols-outlined {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	color: #ffffff;
	font-size: 22px;
}


.idenq-products {
	position: relative;
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.idenq-products__header {
	max-width: 720px;
	margin: 0 auto 3rem;
	text-align: center;
}

.idenq-products__eyebrow {
	display: inline-block;
	margin-bottom: 0.75rem;
	font-size: 0.65rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: #3b82f6;
	font-weight: 600;
}

.idenq-products__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #ffffff;
}

.idenq-products__subtitle {
	margin: 0;
	color: #94a3b8;
	font-size: 1.05rem;
	line-height: 1.7;
}

.idenq-products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.idenq-product-card {
	position: relative;
	padding: 2.25rem 2.25rem 2rem;
	border-radius: 1rem;
	border: 1px solid rgba(30, 41, 59, 0.9);
	background: rgba(10, 14, 23, 0.72);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(16px);
	transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.idenq-product-card:hover {
	transform: translateY(-6px);
}

.idenq-product-card__icon {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.9rem;
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(30, 41, 59, 0.8);
	margin-bottom: 1.5rem;
	color: currentColor;
}

.idenq-product-card__tag {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.35rem 0.75rem;
	border-radius: 0.6rem;
	border: 1px solid rgba(51, 65, 85, 0.8);
	background: rgba(30, 41, 59, 0.8);
	font-size: 0.6rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #94a3b8;
	font-weight: 600;
}

.idenq-product-card h3 {
	margin: 0 0 1rem;
	font-size: 1.6rem;
	color: #ffffff;
}

.idenq-product-card p {
	margin: 0;
	color: #94a3b8;
	line-height: 1.7;
	font-size: 0.95rem;
}

.idenq-product-card__list {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	color: #cbd5f5;
	font-size: 0.95rem;
}

.idenq-product-card__list li {
	position: relative;
	padding-left: 1.5rem;
}

.idenq-product-card__list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #3b82f6;
	font-weight: 700;
}

.idenq-product-card--blue {
	color: #60a5fa;
}

.idenq-product-card--blue:hover {
	border-color: rgba(96, 165, 250, 0.4);
	box-shadow: 0 0 30px -5px rgba(59, 130, 246, 0.2);
}

.idenq-product-card--red {
	color: #f87171;
}

.idenq-product-card--red:hover {
	border-color: rgba(248, 113, 113, 0.4);
	box-shadow: 0 0 30px -5px rgba(239, 68, 68, 0.15);
}

.idenq-product-card--teal {
	color: #2dd4bf;
}

.idenq-product-card--teal:hover {
	border-color: rgba(45, 212, 191, 0.4);
	box-shadow: 0 0 30px -5px rgba(20, 184, 166, 0.15);
}

.idenq-products__ambient {
	position: absolute;
	inset: -10% 0 0;
	z-index: 0;
	pointer-events: none;
}

.idenq-products__glow {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.3;
}

.idenq-products__glow--left {
	left: 5%;
	top: 15%;
	background: rgba(59, 130, 246, 0.25);
}

.idenq-products__glow--right {
	right: 5%;
	bottom: 10%;
	background: rgba(167, 139, 250, 0.2);
}

.idenq-section--products {
	background: #020408;
	position: relative;
}

.idenq-section--products .mb-16 {
	margin-bottom: 4rem;
}

.idenq-section--products .text-center {
	text-align: center;
}

.idenq-section--products .max-w-3xl {
	max-width: 48rem;
}

.idenq-section--products .mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.idenq-section--products .text-primary {
	color: #3b82f6;
}

.idenq-section--products .tracking-\\[0\\.2em\\] {
	letter-spacing: 0.2em;
}

.idenq-section--products .text-xs {
	font-size: 0.75rem;
}

.idenq-section--products .uppercase {
	text-transform: uppercase;
}

.idenq-section--products .mb-3 {
	margin-bottom: 0.75rem;
}

.idenq-section--products .text-4xl {
	font-size: 2.25rem;
}

@media (min-width: 768px) {
	.idenq-section--products .md\\:text-5xl {
		font-size: 3rem;
	}
}

.idenq-section--products .font-display {
	font-family: 'Syne', sans-serif;
}

.idenq-section--products .font-bold {
	font-weight: 700;
}

.idenq-section--products .text-white {
	color: #ffffff;
}

.idenq-section--products .mb-6 {
	margin-bottom: 1.5rem;
}

.idenq-section--products .text-lg {
	font-size: 1.125rem;
}

.idenq-section--products .text-slate-400 {
	color: #94a3b8;
}

.idenq-section--products .grid {
	display: grid;
}

.idenq-section--products .grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.idenq-section--products .md\\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.idenq-section--products .lg\\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.idenq-section--products .gap-8 {
	gap: 2rem;
}

.idenq-section--products .relative {
	position: relative;
}

.idenq-section--products .z-10 {
	z-index: 10;
}

.idenq-section--products .group {
	position: relative;
}

.idenq-section--products .rounded-2xl {
	border-radius: 1rem;
}

.idenq-section--products .glass-panel {
	background: rgba(10, 14, 23, 0.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.idenq-section--products .border {
	border-width: 1px;
	border-style: solid;
}

.idenq-section--products .border-slate-800 {
	border-color: #1e293b;
}

.idenq-section--products .p-8 {
	padding: 2rem;
}

.idenq-section--products .transition-all {
	transition: all 0.5s ease;
}

.idenq-section--products .duration-500 {
	transition-duration: 0.5s;
}

.idenq-section--products .hover\\:border-blue-500\\/40:hover {
	border-color: rgba(59, 130, 246, 0.4);
}

.idenq-section--products .hover\\:border-red-500\\/40:hover {
	border-color: rgba(239, 68, 68, 0.4);
}

.idenq-section--products .hover\\:border-teal-500\\/40:hover {
	border-color: rgba(20, 184, 166, 0.4);
}

.idenq-section--products .hover\\:shadow-glow:hover {
	box-shadow: 0 0 30px -5px rgba(59, 130, 246, 0.2);
}

.idenq-section--products .hover\\:shadow-glow-red:hover {
	box-shadow: 0 0 30px -5px rgba(239, 68, 68, 0.15);
}

.idenq-section--products .hover\\:shadow-glow-teal:hover {
	box-shadow: 0 0 30px -5px rgba(20, 184, 166, 0.15);
}

.idenq-section--products .hover\\:-translate-y-1:hover {
	transform: translateY(-0.25rem);
}

.idenq-section--products .w-16 {
	width: 4rem;
}

.idenq-section--products .h-16 {
	height: 4rem;
}

.idenq-section--products .rounded-xl {
	border-radius: 0.75rem;
}

.idenq-section--products .bg-slate-900 {
	background: #0f172a;
}

.idenq-section--products .flex {
	display: flex;
}

.idenq-section--products .items-center {
	align-items: center;
}

.idenq-section--products .items-start {
	align-items: flex-start;
}

.idenq-section--products .justify-center {
	justify-content: center;
}

.idenq-section--products .mb-6 {
	margin-bottom: 1.5rem;
}

.idenq-section--products .group-hover\\:bg-blue-500\\/10 {
	transition: background-color 0.4s ease;
}

.idenq-section--products .group-hover\\:bg-red-500\\/10 {
	transition: background-color 0.4s ease;
}

.idenq-section--products .group-hover\\:bg-teal-500\\/10 {
	transition: background-color 0.4s ease;
}

.idenq-section--products .group:hover .group-hover\\:bg-blue-500\\/10 {
	background: rgba(59, 130, 246, 0.1);
}

.idenq-section--products .group:hover .group-hover\\:bg-red-500\\/10 {
	background: rgba(239, 68, 68, 0.1);
}

.idenq-section--products .group:hover .group-hover\\:bg-teal-500\\/10 {
	background: rgba(20, 184, 166, 0.1);
}

.idenq-section--products .p-3 {
	padding: 0.75rem;
}

.idenq-section--products .overflow-hidden {
	overflow: hidden;
}

.idenq-section--products .illustration-container svg {
	width: 100%;
	height: 100%;
}

.idenq-section--products .inline-flex {
	display: inline-flex;
}

.idenq-section--products .px-2\\.5 {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.idenq-section--products .py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.idenq-section--products .rounded-md {
	border-radius: 0.5rem;
}

.idenq-section--products .bg-slate-800\\/80 {
	background: rgba(30, 41, 59, 0.8);
}

.idenq-section--products .border-slate-700 {
	border-color: #334155;
}

.idenq-section--products .text-\\[10px\\] {
	font-size: 10px;
}

.idenq-section--products .tracking-wider {
	letter-spacing: 0.08em;
}

.idenq-section--products .text-slate-300 {
	color: #cbd5f5;
}

.idenq-section--products .text-2xl {
	font-size: 1.5rem;
}

.idenq-section--products .mb-4 {
	margin-bottom: 1rem;
}

.idenq-section--products .leading-relaxed {
	line-height: 1.7;
}

.idenq-section--products .text-sm {
	font-size: 0.875rem;
}

.idenq-section--products .space-y-3 > * + * {
	margin-top: 0.75rem;
}

.idenq-section--products .mr-2 {
	margin-right: 0.5rem;
}

.idenq-section--products .mt-0\\.5 {
	margin-top: 0.125rem;
}

.idenq-section--products .text-blue-500\\/30 {
	color: rgba(59, 130, 246, 0.3);
}

.idenq-section--products .text-blue-400 {
	color: #60a5fa;
}

.idenq-section--products .text-blue-500 {
	color: #3b82f6;
}

.idenq-section--products .text-blue-300 {
	color: #93c5fd;
}

.idenq-section--products .text-red-400 {
	color: #f87171;
}

.idenq-section--products .text-red-500\\/50 {
	color: rgba(239, 68, 68, 0.5);
}

.idenq-section--products .text-red-500\\/20 {
	color: rgba(239, 68, 68, 0.2);
}

.idenq-section--products .text-red-500\\/40 {
	color: rgba(239, 68, 68, 0.4);
}

.idenq-section--products .text-teal-400 {
	color: #2dd4bf;
}

.idenq-section--products .text-teal-600\\/50 {
	color: rgba(13, 148, 136, 0.5);
}

.idenq-section--products .text-teal-500\\/20 {
	color: rgba(20, 184, 166, 0.2);
}

.idenq-section--products .animate-pulse {
	animation: idenq-pulse 1.8s ease-in-out infinite;
}

@keyframes idenq-pulse {
	0% { opacity: 0.5; }
	50% { opacity: 1; }
	100% { opacity: 0.5; }
}

.idenq-section--products .fixed {
	position: absolute;
}

.idenq-section--products .top-0 {
	top: 0;
}

.idenq-section--products .left-0 {
	left: 0;
}

.idenq-section--products .w-full {
	width: 100%;
}

.idenq-section--products .h-full {
	height: 100%;
}

.idenq-section--products .-z-20 {
	z-index: -20;
}

.idenq-section--products .top-1\\/4 {
	top: 25%;
}

.idenq-section--products .left-1\\/4 {
	left: 25%;
}

.idenq-section--products .w-\\[500px\\] {
	width: 500px;
}

.idenq-section--products .h-\\[500px\\] {
	height: 500px;
}

.idenq-section--products .bg-blue-600\\/5 {
	background: rgba(37, 99, 235, 0.05);
}

.idenq-section--products .rounded-full {
	border-radius: 9999px;
}

.idenq-section--products .blur-\\[120px\\] {
	filter: blur(120px);
}

.idenq-section--products .-z-10 {
	z-index: -10;
}

.idenq-section--products .pointer-events-none {
	pointer-events: none;
}

.idenq-section--products .bottom-1\\/4 {
	bottom: 25%;
}

.idenq-section--products .right-1\\/4 {
	right: 25%;
}

.idenq-section--products .bg-purple-600\\/5 {
	background: rgba(147, 51, 234, 0.05);
}

.idenq-products__radial {
	background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 1) 0%, rgba(2, 4, 8, 1) 100%);
}

.idenq-site-footer {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding: 3.5rem 0 2rem;
	background: #0b0f18;
	border-top: 1px solid rgba(30, 41, 59, 0.7);
	color: #e2e8f0;
}

.idenq-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.idenq-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 2rem 2.5rem;
}

.idenq-footer__title {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
}

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

.idenq-footer__list a {
	color: #cbd5f5;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.idenq-footer__list a:hover,
.idenq-footer__list a:focus-visible {
	color: #ffffff;
}

.idenq-footer__meta {
	border-top: 1px solid rgba(30, 41, 59, 0.7);
	padding-top: 1.5rem;
	color: #94a3b8;
	font-size: 0.85rem;
}

.idenq-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
}

.idenq-pricing-card {
	position: relative;
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.idenq-pricing-card h3 {
	margin: 0;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.idenq-pricing-card--featured {
	border-color: rgba(46, 91, 255, 0.5);
	background: var(--background-dark);
	box-shadow: 0 0 30px rgba(46, 91, 255, 0.12);
}

.idenq-pricing__badge {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.35rem 0.75rem;
	background: var(--primary);
	color: #ffffff;
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	font-weight: 700;
	border-radius: 0 1rem 0 1rem;
}

.idenq-pricing__sub {
	margin: 0;
	color: var(--text-dim);
}

.idenq-pricing__price {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
}

.idenq-pricing__note {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	color: #77849f;
}

.idenq-pricing-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.idenq-pricing-list li {
	position: relative;
	padding-left: 1.75rem;
	color: #cbd5f5;
	font-size: 0.95rem;
}

.idenq-pricing-list li::before {
	content: 'check_circle';
	font-family: 'Material Symbols Outlined', sans-serif;
	position: absolute;
	left: 0;
	color: currentColor;
}

.idenq-blockvault {
	margin: 3rem auto;
	padding: 2rem;
	border-radius: 1rem;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.idenq-blockvault__intro,
.idenq-blockvault__note,
.idenq-blockvault__link {
	margin: 0;
	color: var(--text-dim);
}

.idenq-blockvault__link a {
	color: var(--primary);
	text-decoration: none;
}

.idenq-blockvault__link a:hover {
	color: #ffffff;
}

.idenq-blockvault__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 0.5rem;
}

.idenq-blockvault__card {
	padding: 1.25rem;
	border-radius: 0.85rem;
	border: 1px solid var(--border-dark);
	background: var(--background-dark);
}

.idenq-blockvault__card h4 {
	margin: 0 0 0.5rem;
	color: #ffffff;
}

.idenq-blockvault__price {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
}

.idenq-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.idenq-team-card {
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid var(--border-dark);
	background: var(--background-dark);
	transition: border-color 0.3s ease;
}

.idenq-team-card:hover {
	border-color: rgba(46, 91, 255, 0.3);
}

.idenq-team-card h3 {
	margin: 0.5rem 0 0.25rem;
	font-size: 1.1rem;
	color: #ffffff;
}

.idenq-team-card p {
	margin: 0.5rem 0 0;
	color: var(--text-dim);
	font-size: 0.9rem;
}

.idenq-team-card__role {
	margin: 0.25rem 0 0.75rem;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
}

.idenq-team-card .material-symbols-outlined {
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	color: #ffffff;
}

.idenq-faq {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.idenq-faq__items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.idenq-faq__item {
	border-radius: 0.75rem;
	border: 1px solid var(--border-dark);
	background: var(--surface-dark);
	overflow: hidden;
}

.idenq-faq__item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	color: #ffffff;
	font-weight: 600;
}

.idenq-faq__item summary::-webkit-details-marker {
	display: none;
}

.idenq-faq__item[open] {
	border-color: rgba(46, 91, 255, 0.3);
}

.idenq-faq__item .material-symbols-outlined {
	color: #8b97b3;
	transition: transform 0.3s ease;
}

.idenq-faq__item[open] .material-symbols-outlined {
	transform: rotate(180deg);
}

.idenq-faq__content {
	padding: 0 1.5rem 1.5rem;
	border-top: 1px solid rgba(30, 37, 54, 0.6);
	color: var(--text-dim);
	font-size: 0.95rem;
}

.idenq-cta {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2.5rem;
	border-radius: 1.5rem;
	border: 1px solid var(--border-dark);
	background: linear-gradient(135deg, var(--surface-dark), #000000);
	overflow: hidden;
}

.idenq-cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 30px 30px;
	pointer-events: none;
}

.idenq-cta__glow {
	position: absolute;
	top: -30%;
	right: -20%;
	width: 340px;
	height: 340px;
	border-radius: 999px;
	background: rgba(46, 91, 255, 0.25);
	filter: blur(110px);
	pointer-events: none;
}

.idenq-cta__content h2 {
	margin: 0 0 0.75rem;
	color: #ffffff;
}

.idenq-cta__content p {
	margin: 0;
	color: var(--text-dim);
	font-size: 1.05rem;
}

.idenq-cta__action {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.idenq-cta__meta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #94a3b8;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: 'Syne', sans-serif;
}

.idenq-cta__meta .material-symbols-outlined {
	color: #22c55e;
	font-size: 16px;
}

.tech-border {
	position: relative;
	transition: all 0.3s ease;
}

.tech-border::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(45deg, transparent, rgba(46, 91, 255, 0.3), transparent);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.tech-border:hover::before {
	opacity: 1;
	background: linear-gradient(45deg, #2e5bff, #00f0ff);
}

.scanner-line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: #2e5bff;
	box-shadow: 0 0 10px #2e5bff, 0 0 20px #2e5bff;
	animation: scan 3s linear infinite;
	opacity: 0.8;
	z-index: 3;
}

@keyframes scan {
	0% {
		top: 0%;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		top: 100%;
		opacity: 0;
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.12);
		opacity: 1;
	}
}

@keyframes ping {
	0% {
		transform: scale(0.5);
		opacity: 0.6;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.js-reveal {
	opacity: 0;
	transform: translateY(24px);
	will-change: opacity, transform;
}

.js-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (min-width: 768px) {
	.idenq-main {
		padding-top: 6rem;
	}

	.idenq-hero {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.idenq-hero__frame {
		aspect-ratio: 4 / 3;
	}

	.idenq-wallets__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.idenq-faq {
		flex-direction: row;
		gap: 4rem;
	}

	.idenq-faq__intro {
		flex: 0 0 35%;
	}

	.idenq-faq__items {
		flex: 1;
	}

	.idenq-cta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.idenq-cta__action {
		align-items: center;
	}
}

@media (min-width: 1024px) {
	.idenq-main {
		padding-top: 7rem;
	}

	.idenq-hero__columns {
		gap: 5rem;
	}

	.idenq-product {
		flex-direction: row;
		align-items: flex-start;
		gap: 2.5rem;
	}
}
