:root {

	--gray-1: #fafafa;
	--gray-2: #f5f5f5;
	--gray-3: #ebebeb;
	--gray-4: #e5e5e5;
	--gray-5: #d4d4d4;
	--gray-6: #c4c4c4;
	--gray-7: #a3a3a3;
	--gray-8: #737373;
	--gray-9: #525252;
	--gray-10: #404040;
	--gray-11: #262626;
	--gray-12: #0A0A0A;

	--brand-3: #e4fad6;
	--brand-7: #E6BA73;
	--brand-8: #E6BA73;
	--brand-9: #E6BA73;
	--brand-11: #507f20;

	--bg: var(--gray-1);
	--surface: var(--gray-2);
	--card: #fff;
	--fg: var(--gray-11);
	--fg-strong: var(--gray-12);
	--fg-muted: var(--gray-8);
	--border: var(--gray-4);
	--border-subtle: var(--gray-3);
	--brand: var(--brand-9);
	--brand-muted: var(--brand-7);
	--brand-strong: var(--brand-11);

	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 12px;
	--sp-4: 16px;
	--sp-5: 24px;
	--sp-6: 32px;
	--sp-7: 40px;
	--sp-8: 48px;
	--sp-9: 64px;
	--sp-10: 40px;
	--sp-12: 48px;
	--sp-16: 64px;

	--r-2: 8px;
	--r-3: 10px;
	--r-4: 14px;
	--r-5: 18px;
	--r-6: 24px;
	--r-max: 999px;
	--shadow-2: 0 6px 24px rgba(23, 23, 23, .08), 0 2px 6px rgba(23, 23, 23, .06);
	--font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

h1,
h2,
h3,
p,
ul {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

:focus-visible {
	outline: 2px solid var(--gray-9);
	outline-offset: 3px;
	border-radius: 4px;
}

.block {
	display: block;
}

.page {
	position: relative;
	min-height: 100vh;
	background: var(--bg);
}

.shell {
	display: flex;
	flex-direction: column;
	gap: var(--sp-12);
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: var(--sp-8) var(--sp-4);
}

.eyebrow-brand {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: var(--brand-muted);
	letter-spacing: .02em;
}

.eyebrow-lg {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--fg-muted);
	letter-spacing: 0;
}

.heading-sub {
	margin-top: var(--sp-4);
	font-size: 20px;
	line-height: 32px;
	color: var(--fg);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	border-radius: var(--r-3);
	transition: background-color .2s, color .2s, border-color .2s;
}

.btn-sm {
	height: 32px;
	padding: 0 12px;
	font-size: 12px;
}

.btn-dark {
	height: 36px;
	padding: 0 16px;
	background: var(--fg-strong);
	color: var(--gray-1);
	border-radius: var(--r-3);
}

.btn-dark:hover {
	background: #000;
}

.btn-outline {
	background: var(--bg);
	border: 1px solid var(--border-subtle);
	color: var(--fg);
	border-radius: var(--r-max);
}

.btn-outline:hover {
	background: var(--surface);
}

.btn.block {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	text-align: left;
	padding: 10px 12px;
	font-size: 12px;
	border-radius: 6px;
	line-height: 1.4;
	white-space: normal;
}

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	border-radius: var(--r-2);
	color: var(--fg);
	transition: background-color .2s;
}

.icon-btn:hover {
	background: var(--surface);
}

.icon-btn.sm {
	width: 32px;
	height: 32px;
	margin-left: auto;
	color: var(--fg-muted);
}

.header-frosted {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--bg) 80%, transparent);
	-webkit-backdrop-filter: blur(32px);
	backdrop-filter: blur(32px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, background-color .3s;
}

.header-frosted.is-scrolled {
	border-bottom-color: var(--border-subtle);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: var(--sp-4);
	height: 64px;
	padding: 0 var(--sp-6);
}

.header-logo {
	display: flex;
	align-items: center;
}

.header-logo img {
	width: 128px;
	height: 36px;
	object-fit: contain;
	object-position: left;
}

.header-nav {
	display: none;
	gap: var(--sp-6);
	justify-content: center;
}

.header-nav a {
	font-size: 14px;
	font-weight: 400;
	color: var(--fg-muted);
	transition: color .2s;
}

.header-nav a:hover {
	color: var(--fg-strong);
}

.header-nav a.is-active {
	font-weight: 600;
	color: var(--fg-strong);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--sp-3);
}

.header-actions .btn-outline {
	background: color-mix(in srgb, var(--bg) 80%, transparent);
	padding: 0 12px;
	height: 32px;
}

.header-desktop {
	display: none;
	align-items: center;
	gap: 16px;
}

.header-link {
	font-size: 14px;
	color: var(--fg-muted);
	transition: color .2s;
}

.header-link:hover {
	color: var(--fg-strong);
}

.header-lang {
	position: relative;
	display: inline-flex;
}

.lang-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 70;
	min-width: 184px;
	padding: 6px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--r-3);
	box-shadow: var(--shadow-2);
	animation: dl-zoom .16s ease-out;
}

.lang-menu[hidden] {
	display: none;
}

.lang-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--r-2);
	font-size: 14px;
	color: var(--fg);
	text-decoration: none;
	white-space: nowrap;
}

.lang-item:hover {
	background: var(--surface);
}

.lang-item.is-current {
	font-weight: 600;
	color: var(--fg-strong);
}

.lang-item.is-current::after {
	content: "\2713";
	color: var(--brand-8);
	font-weight: 700;
}

.opening {
	position: relative;
	min-height: 460svh;
	background: var(--bg);
	--content-edge: max(var(--sp-8), calc((100vw - 1280px) / 2));
	--hero-title-top: clamp(14rem, 34svh, 24rem);
	--hero-heading-size: 3.5rem;
	--hero-heading-leading: 4.05rem;
	--hero-eyebrow-line: 1.25rem;
	--scroll-progress: 0;
	--pointer-x: 0;
	--pointer-y: 0;
	--video-scale: calc(1.005 + var(--scroll-progress) * 0.16);
	--video-x: clamp(-3vmax, calc(var(--scroll-progress) * -4.5vmax + var(--pointer-x) * 0.45vmax), 3vmax);
	--video-y: clamp(-3vmax, calc(var(--scroll-progress) * -3.5vmax + var(--pointer-y) * 0.35vmax), 3vmax);
}

.opening-sticky {
	position: sticky;
	top: 0;
	z-index: 0;
	min-height: 100svh;
	overflow: hidden;
	background: var(--bg);
}

.opening-media {
	position: absolute;
	inset: -2vmax;
	pointer-events: none;
	overflow: hidden;
	background: var(--bg);
}

.opening-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform-origin: center;
	transform: translate3d(var(--video-x), var(--video-y), 0) scale(var(--video-scale));
	will-change: transform;
}

.opening-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 52% 46%, transparent 0 28%, color-mix(in srgb, var(--bg) 34%, transparent) 62%),
		linear-gradient(180deg, color-mix(in srgb, var(--bg) 18%, transparent), color-mix(in srgb, var(--bg) 42%, transparent));
}

.opening-grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .34;
	background-image: linear-gradient(90deg, color-mix(in srgb, var(--border-subtle) 42%, transparent) 1px, transparent 1px),
		linear-gradient(180deg, color-mix(in srgb, var(--border-subtle) 32%, transparent) 1px, transparent 1px);
	background-size: 96px 96px;
	-webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 55%, transparent 92%);
	mask-image: radial-gradient(circle at 50% 50%, #000 0 55%, transparent 92%);
}

.opening-scenes {
	position: relative;
	z-index: 1;
	margin-top: -100svh;
}

.scene {
	position: relative;
	min-height: 120svh;
}

.video-hold-panel {
	min-height: 100svh;
}


.hero-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--sp-4);
	min-height: 100svh;
	padding: calc(64px + var(--sp-8)) var(--sp-6) var(--sp-8);
}

.hero-eyebrow {
	font-size: 14px;
	font-weight: 500;
	line-height: var(--hero-eyebrow-line);
	letter-spacing: .06em;
	color: var(--brand);
}

.hero-heading {
	margin-top: var(--sp-4);
	font-size: 32px;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: -.01em;
	color: var(--fg-strong);
}

.hero-heading-right {
	text-align: left;
}

.hero-description {
	margin-top: clamp(var(--sp-6), 12vh, calc(var(--sp-8) * 2));
	max-width: 592px;
	font-size: 16px;
	line-height: 28px;
	color: var(--fg);
}

.hero-badges {
	display: none;
}

.pill-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 14px;
	border-radius: var(--r-max);
	border: 1px solid color-mix(in srgb, var(--border-subtle) 44%, transparent);
	background: color-mix(in srgb, var(--bg) 64%, transparent);
	-webkit-backdrop-filter: blur(var(--sp-6));
	backdrop-filter: blur(var(--sp-6));
	color: var(--brand-7);
}

.hero-store-badges {
	--store-badge-height: clamp(2.25rem, calc((100vw - (var(--sp-6) * 2) - var(--sp-2)) / 6.37), 3.5rem);
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	margin-top: var(--sp-6);
}

.hero-store-badges img {
	height: var(--store-badge-height);
	width: auto;
}

/* keywords */
.keywords-panel {
	display: flex;
	align-items: center;
	min-height: 100svh;
	padding: calc(var(--sp-8) * 1.6) var(--sp-6);
}

.keywords-list {
	margin-left: 0;
	display: flex;
	flex-direction: column;
	gap: var(--sp-8);
}

.keywords-list p {
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--fg-strong);
}

/* infrastructure */
.infrastructure-panel {
	min-height: 390svh;
}

.infrastructure-content {
	max-width: 1280px;
	margin: 0 auto;
	min-height: 390svh;
	padding: calc(var(--sp-8) * 1.6) var(--sp-6) calc(var(--sp-8) * 2);
}

.infrastructure-pinned {
	position: sticky;
	top: calc(4rem + var(--sp-4));
}

.infrastructure-heading {
	max-width: 928px;
}

.infrastructure-heading h2 {
	margin-top: var(--sp-4);
	font-size: 36px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--fg-strong);
}

.infrastructure-heading .heading-sub {
	max-width: 768px;
}

.cards-stage {
	display: flex;
	align-items: flex-start;
	margin-top: var(--sp-8);
	min-height: 82svh;
}

.cards-grid {
	display: grid;
	width: 100%;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--sp-4);
	align-items: start;
	perspective: 1400px;
	transform-style: preserve-3d;
}

.infra-card {
	position: relative;
	z-index: var(--card-z, 1);
	display: flex;
	flex-direction: column;
	gap: var(--sp-6);
	min-height: 24rem;
	padding: var(--sp-6);
	border-radius: 12px;
	border: 1px solid color-mix(in oklab, var(--border-subtle) 50%, transparent);
	background: linear-gradient(145deg, color-mix(in oklab, var(--bg) 96%, var(--brand-3) 4%), color-mix(in oklab, var(--bg) 88%, var(--border-subtle) 12%));
	transform-origin: center bottom;
	transform-style: preserve-3d;
	will-change: opacity, transform;
	transition: opacity .1s linear, transform .1s linear;
	opacity: .52;
}

.infra-card:nth-child(2) {
	margin-top: calc(var(--sp-8) * .9);
}

.infra-card:nth-child(3) {
	margin-top: calc(var(--sp-8) * 1.5);
}

.infra-card:nth-child(4) {
	margin-top: calc(var(--sp-8) * 2.1);
}

.card-kicker {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--fg-muted);
	letter-spacing: .06em;
}

.logo-shell {
	display: flex;
	height: var(--sp-8);
	align-items: center;
}

.logo-shell img {
	max-height: 100%;
	max-width: 12rem;
	width: auto;
	object-fit: contain;
	object-position: left center;
}

.card-text {
	font-size: 16px;
	line-height: 24px;
	color: var(--fg);
}

.tag-list {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
}

.tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: var(--r-max);
	background: var(--surface);
	color: var(--fg-muted);
	font-size: 12px;
	font-weight: 500;
}

.visa-section {
	background: var(--bg);
	padding-block: var(--sp-8);
}

.visa-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(100%, 976px);
	margin: 0 auto var(--sp-8);
	padding-inline: var(--sp-4);
	text-align: center;
}

.visa-eyebrow {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: var(--brand-muted);
}

.visa-title {
	margin-top: var(--sp-4);
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	color: var(--fg-strong);
}

.visa-desc {
	margin-top: var(--sp-4);
	font-size: 16px;
	line-height: 24px;
	color: var(--fg-muted);
}

.visa-stage {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	align-items: stretch;
	width: min(100%, 1280px);
	margin: 0 auto;
	padding-inline: var(--sp-4);
}

.visa-card {
	position: relative;
	display: block;
	width: 100%;
	height: 420px;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	border-radius: var(--r-6);
	background: var(--surface);
	color: var(--fg-strong);
	text-align: left;
	flex-basis: auto;
	cursor: pointer;
	transition: flex-basis .64s cubic-bezier(.22, 1, .36, 1), background-color .42s ease,
		border-color .42s ease, box-shadow .42s ease, transform .42s ease;
}

.visa-card:focus-visible {
	outline: 2px solid var(--brand-9);
	outline-offset: 4px;
}

.visa-card.is-selected {
	flex-basis: 58%;
	background: color-mix(in oklab, var(--surface) 46%, var(--bg));
}

.visa-card.is-resting {
	flex-basis: 40.125%;
	background: var(--surface);
}

.visa-card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity .56s ease;
}

.visa-card.is-selected .visa-card-bg {
	opacity: 1;
}

.visa-card-header {
	position: absolute;
	top: var(--sp-6);
	left: var(--sp-6);
	z-index: 1;
	display: flex;
	align-items: center;
	gap: var(--sp-5);
	max-width: calc(100% - var(--sp-8));
}

.visa-card-logo {
	width: 87px;
	height: 28px;
	object-fit: contain;
}

.visa-divider {
	width: 1px;
	height: 28px;
	background: var(--border);
}

.visa-card-title {
	min-width: 0;
	font-size: 30px;
	font-weight: bold;
	line-height: 36px;
	color: var(--fg-strong);
	white-space: nowrap;
}

.visa-copy {
	position: absolute;
	z-index: 1;
	left: var(--sp-6);
	width: min(480px, calc(100% - var(--sp-8)));
	transition: width .42s ease;
}

.visa-card.is-selected .visa-copy {
	width: min(720px, calc(100% - var(--sp-8)));
}

.visa-copy-bottom {
	bottom: var(--sp-6);
}

.visa-copy-middle {
	top: 50%;
	transform: translateY(-50%);
}

.visa-statement {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--fg-muted);
	opacity: .62;
	word-break: keep-all;
	overflow-wrap: normal;
	transition: opacity .42s, color .42s, font-size .42s, line-height .42s;
}

.visa-statement.is-active {
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	color: var(--fg-strong);
	opacity: 1;
}

.visa-lines {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	margin-top: var(--sp-2);
}

.visa-line {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--fg-muted);
	opacity: .62;
	word-break: keep-all;
	overflow-wrap: normal;
	transition: opacity .42s, color .42s, font-size .42s, line-height .42s;
}

.visa-line.is-active {
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	color: var(--fg-strong);
	opacity: 1;
}

.visa-card.is-selected .visa-statement,
.visa-card.is-selected .visa-line {
	white-space: nowrap;
}

.visa-card.is-resting .visa-line {
	opacity: .78;
}

.visa-card.is-resting .visa-line.is-active {
	color: var(--fg-muted);
	opacity: .78;
}

.visa-direct-statement {
	position: absolute;
	z-index: 1;
	left: var(--sp-6);
	bottom: var(--sp-6);
	width: min(330px, calc(100% - var(--sp-8)));
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	line-height: 36px;
	color: var(--fg-strong);
}

.ecosystem {
	background: var(--bg-secondary, var(--surface));
	padding: var(--sp-8) 0;
}

.ecosystem-inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-6);
	width: 100%;
}

.ecosystem-head-wrap {
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	padding: 0 var(--sp-4);
}

.ecosystem-head {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	max-width: 896px;
	text-align: center;
}

.ecosystem-head h2 {
	font-size: 30px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--fg-strong);
}

.ecosystem-desc {
	margin: 0 auto;
	max-width: 768px;
	font-size: 14px;
	line-height: 24px;
	color: var(--fg-muted);
}

.ecosystem-marquee {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}

.ecosystem-marquee-row {
	overflow: hidden;
}

.ecosystem-marquee-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation-name: ecosystem-marquee-scroll;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.ecosystem-marquee-track-slow {
	animation-duration: 56s;
}

.ecosystem-marquee-track-medium {
	animation-duration: 44s;
}

.ecosystem-marquee-track-reverse {
	animation-direction: reverse;
}

.ecosystem-marquee-group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: var(--sp-6);
	padding-right: var(--sp-6);
}

.ecosystem-marquee-item {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

.ecosystem-marquee-item img {
	display: block;
	height: 48px;
	width: auto;
	max-width: none;
	object-fit: contain;
}

.ecosystem-marquee-item.is-scaled img {
	transform: scale(.8);
}

.ecosystem-marquee-row:hover .ecosystem-marquee-track {
	animation-play-state: paused;
}

@keyframes ecosystem-marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.block {
	padding-block: 0;
}

.block-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--sp-8);
}

.corner {
	position: absolute;
	right: 0;
	top: 0;
	display: none;
	width: 24px;
	height: 24px;
	color: var(--border);
}

.corner svg {
	width: 24px;
	height: 24px;
}

.corner-image img {
	width: 24px;
	height: 24px;
	transform: rotate(90deg) scaleY(-1);
}

.block-head {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	max-width: 976px;
}

.block-head h2 {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--fg-strong);
}

.block-sub {
	
	font-size: 16px;
	line-height: 24px;
	color: var(--fg-muted);
}

.chart-area {
	position: relative;
	height: 256px;
	width: 100%;
	overflow: hidden;
}

.chart-grid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.wave-layer {
	position: absolute;
	pointer-events: none;
	background-repeat: repeat-x;
	background-size: 1296px 100%;
	background-position: 0 0;
	will-change: background-position;
	animation-name: wave-scroll;
	animation-timing-function: cubic-bezier(.45, .05, .55, .95);
	animation-iteration-count: infinite;
}

.wave-gray {
	inset: 0 0 15.82% 0;
	background-image: url(../images/wave-green-composite.png);
	animation-duration: 24s;
	animation-delay: -4s;
	z-index: 10;
}

.wave-green {
	inset: 12% 0.02% 0 0.02%;
	background-image: url(../images/wave-green-composite1.png);
	animation-duration: 19s;
	animation-delay: -7s;
	z-index: 20;
}

@keyframes wave-scroll {
	from {
		background-position-x: -1296px;
	}

	to {
		background-position-x: 0;
	}
}


.scenario-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-4);
	margin-top: var(--sp-8);
}

.scenario-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	min-width: 0;
	padding: var(--sp-3);
	background: var(--surface);
	border-radius: var(--r-2);
}

.icon-box {
	display: flex;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	color: var(--fg-strong);
}

.icon-box svg {
	width: 16px;
	height: 16px;
}

.icon-box.lg {
	width: 32px;
	height: 32px;
}

.icon-box.lg svg {
	width: 20px;
	height: 20px;
}

.scenario-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.scenario-copy h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--fg-strong);
}

.scenario-copy p {
	font-size: 14px;
	line-height: 20px;
	color: var(--fg-muted);
}

[data-motion-active=false] .ecosystem-marquee-track,
[data-motion-active=false] .p2-wave-layer,
[data-motion-active=false] .p5-cardgroup-orbit,
[data-motion-active=false] .qr-payments-dot-matrix:before,
[data-motion-active=false] .qr-scan-line,
[data-motion-active=false] .qr-scan-target-line,
[data-motion-active=false] .qr-scan-animated-line,
[data-motion-active=false] .qr-select-scene-card {
	animation-play-state: paused
}

.qr-payments-dot-matrix {
	position: relative;
	overflow: hidden
}

.qr-payments-dot-matrix:before {
	content: "";
	background-image: radial-gradient(circle, var(--color-border-strong) 1px, transparent 1px);
	opacity: .42;
	will-change: background-position;
	background-position: 0 0;
	background-repeat: repeat;
	background-size: 16px 16px;
	animation: qr-dot-matrix-scroll 3.2s linear infinite;
	position: absolute;
	inset: -16px
}

.qr-flow-link {
	width: var(--space-6);
	height: var(--space-2);
	flex-shrink: 0;
	position: relative
}

.qr-flow-link:before {
	width: calc(var(--space-6) - var(--space-2));
	border-top: 1px solid var(--color-border-strong);
	left: 0
}

.qr-flow-link:after,
.qr-flow-link:before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%)
}

.qr-flow-link:after {
	border-top: 3px solid #0000;
	border-bottom: 3px solid #0000;
	border-left: 5px solid var(--color-border-strong);
	width: 0;
	height: 0;
	right: 0
}

@keyframes qr-dot-matrix-scroll {
	0% {
		background-position: 0 0
	}

	to {
		background-position: 16px 16px
	}
}

@media (prefers-reduced-motion:reduce) {
	.qr-payments-dot-matrix:before {
		animation: none
	}
}

.qr-inspection-container {
	max-width: 90rem
}

.qr-inspection-panel {
	background-image: radial-gradient(circle, var(--color-fg-muted) 1px, transparent 1px)
}

.qr-inspection-panel {
	background-image: radial-gradient(circle, color-mix(in oklab, var(--color-fg-muted) 24%, transparent) 1px, transparent 1px)
}

.qr-inspection-panel {
	background-size: var(--space-5) var(--space-5);
	overflow: hidden
}

.qr-inspection-layout {
	min-height: 40rem
}

.qr-inspection-left-panel,
.qr-inspection-visual-panel {
	min-width: 0
}

.qr-inspection-visual-panel {
	min-height: 0
}

.qr-demo-stage {
	border-radius: var(--radius-4);
	background: 0 0;
	justify-content: center;
	align-items: center;
	height: 100%;
	min-height: 0;
	animation: qr-stage-enter .36s cubic-bezier(.22, 1, .36, 1) both;
	display: flex;
	position: relative;
	overflow: hidden
}

.qr-demo-stage-select,
.qr-demo-stage-scan,
.qr-demo-stage-confirm,
.qr-demo-stage-success,
.qr-demo-stage-settlement,
.qr-demo-stage-merchants,
.qr-demo-stage-network {
	background: 0 0
}

.qr-stage-layer {
	pointer-events: none;
	justify-content: center;
	align-items: center;
	min-width: 0;
	display: flex;
	position: absolute;
	inset: 0
}

.qr-stage-layer-enter {
	animation: qr-stage-layer-enter .42s cubic-bezier(.22, 1, .36, 1) both
}

.qr-stage-layer-exit {
	animation: qr-stage-layer-exit .36s cubic-bezier(.22, 1, .36, 1) both
}

.qr-inspection-sidebar {
	gap: var(--space-4);
	min-width: 0;
	display: flex
}

.qr-inspection-list {
	min-width: 0
}

.qr-inspection-nav-button {
	width: var(--space-8);
	height: var(--space-8);
	border-radius: var(--radius-max);
	background: var(--color-surface);
	color: var(--color-fg-strong);
	justify-content: center;
	align-items: center;
	transition: background-color .18s, color .18s, opacity .18s, transform .18s;
	display: inline-flex
}

.qr-inspection-nav-button:hover:not(:disabled) {
	background: var(--color-bg);
	transform: translateY(-1px)
}

.qr-inspection-nav-button:disabled {
	opacity: .38;
	cursor: not-allowed
}

.qr-inspection-item {
	border-radius: var(--radius-6);
	border: 0;
	transition: width .34s cubic-bezier(.22, 1, .36, 1), max-width .34s cubic-bezier(.22, 1, .36, 1), border-radius .34s cubic-bezier(.22, 1, .36, 1), background-color .22s, color .22s, box-shadow .22s, transform .22s;
	overflow: hidden
}

.qr-inspection-item:hover {
	transform: translateY(-1px)
}

.qr-inspection-item[aria-pressed=true] {
	border-radius: var(--radius-5);
	box-shadow: none
}

.qr-inspection-item[aria-pressed=true] .qr-inspection-copy {
	color: var(--color-primary-foreground)
}

.qr-inspection-item[aria-pressed=true]>span:first-child>span:first-child {
	background: var(--color-primary-foreground);
	color: var(--color-primary)
}

.qr-inspection-copy {
	padding-left: var(--space-7);
	opacity: 0;
	transform: translateY(calc(var(--space-1) * -1));
	grid-template-rows: 0fr;
	margin-top: 0;
	transition: grid-template-rows .34s cubic-bezier(.22, 1, .36, 1), margin-top .34s cubic-bezier(.22, 1, .36, 1), opacity .22s, transform .34s cubic-bezier(.22, 1, .36, 1);
	display: grid
}

.qr-inspection-copy>span {
	overflow: hidden
}

.qr-inspection-copy[data-state=active] {
	margin-top: var(--space-3);
	opacity: 1;
	grid-template-rows: 1fr;
	transform: translateY(0)
}

.qr-select-showcase {
	width: 100%;
	height: 100%;
	animation: qr-select-showcase-enter .42s cubic-bezier(.22, 1, .36, 1) both;
	position: relative;
	overflow: hidden
}

.qr-select-scene-card {
	border-radius: var(--radius-5);
	box-shadow: var(--shadow-5);
	animation: qr-select-scene-float 6.8s ease-in-out infinite;
	position: absolute;
	overflow: hidden
}

.qr-select-scene-card img {
	object-fit: cover
}

.qr-select-scene-card-main {
	z-index: 3;
	width: min(44%, 22.5rem);
	height: 15rem;
	top: 7.5rem;
	right: 6%
}

.qr-select-scene-card-cafe {
	z-index: 2;
	width: min(40%, 20rem);
	height: 13.125rem;
	animation-delay: -1.4s;
	top: 4rem;
	left: 7%
}

.qr-select-scene-card-restaurant {
	z-index: 4;
	width: min(38%, 18.75rem);
	height: 12.5rem;
	animation-delay: -2.5s;
	bottom: 4rem;
	right: 9%
}

.qr-select-scene-card-retail {
	z-index: 1;
	width: min(32%, 16.25rem);
	height: 11.25rem;
	animation-delay: -3.6s;
	bottom: 5rem;
	left: 10%
}

.qr-settlement-visual {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 40rem;
	display: flex;
	position: relative;
	overflow: hidden
}

.qr-settlement-card {
	z-index: 1;
	gap: var(--space-5);
	width: min(100%, 22.6875rem);
	padding: var(--space-6);
	border-radius: calc(var(--radius-6) + var(--space-4));
	background: var(--color-surface);
	flex-direction: column;
	display: flex;
	position: relative
}

.qr-settlement-pill {
	min-height: var(--space-9);
	justify-content: center;
	align-items: center;
	gap: var(--space-2);
	border-radius: var(--radius-max);
	background: var(--color-bg-brand);
	color: var(--color-fg-strong);
	letter-spacing: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	display: flex
}

.qr-settlement-body {
	align-items: center;
	gap: var(--space-5);
	padding: var(--space-1) 0;
	flex-direction: column;
	display: flex
}

.qr-settlement-qr {
	aspect-ratio: 1;
	border-radius: var(--radius-4);
	width: 10.8125rem;
	position: relative;
	overflow: hidden
}

.qr-settlement-qr img {
	object-fit: cover
}

.qr-settlement-copy {
	gap: var(--space-2);
	text-align: center;
	max-width: 18.875rem;
	color: var(--color-fg-muted);
	letter-spacing: 0;
	font-size: 1rem;
	line-height: 1;
	display: grid
}

.qr-settlement-arrow {
	width: 1.4375rem;
	height: 1.9375rem
}

.qr-settlement-rail {
	--rail-step: 2.88888rem;
	z-index: 2;
	width: 12rem;
	height: var(--space-9);
	position: absolute;
	left: 50%;
	overflow: visible;
	transform: translate(-50%);
	-webkit-mask-image: linear-gradient(90deg, #0000, #000 20% 80%, #0000);
	mask-image: linear-gradient(90deg, #0000, #000 20% 80%, #0000)
}

.qr-settlement-rail[data-variant=users] {
	top: 1.6875rem
}

.qr-settlement-rail[data-variant=merchants] {
	bottom: 1.6875rem
}

.qr-settlement-avatar {
	--slot-index: 0;
	width: var(--space-9);
	height: var(--space-9);
	border: .09375rem solid var(--color-bg);
	border-radius: var(--radius-max);
	background: var(--color-bg);
	opacity: 1;
	transform: translateX(calc(var(--slot-index) * var(--rail-step))) scale(1);
	transition: opacity .76s cubic-bezier(.45, 0, .2, 1), transform .76s cubic-bezier(.45, 0, .2, 1);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden
}

.qr-settlement-avatar:nth-child(4) {
	opacity: 0;
	transform: translateX(calc(var(--slot-index) * var(--rail-step))) scale(.94)
}

.qr-settlement-rail[data-shifting=true] .qr-settlement-avatar {
	transform: translateX(calc((var(--slot-index) - 1) * var(--rail-step))) scale(1)
}

.qr-settlement-rail[data-shifting=true] .qr-settlement-avatar:first-child {
	opacity: 0;
	transform: translateX(calc(var(--rail-step) * -1)) scale(.94)
}

.qr-settlement-rail[data-shifting=true] .qr-settlement-avatar:nth-child(4) {
	opacity: 1;
	transform: translateX(calc((var(--slot-index) - 1) * var(--rail-step))) scale(1)
}

.qr-settlement-avatar-image {
	object-fit: cover
}

.qr-support-visual {
	width: min(100%, 43rem);
	min-height: 32rem;
	padding: var(--space-6) var(--space-4);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.8125rem;
	display: flex
}

.qr-support-country-row {
	justify-content: center;
	align-items: flex-start;
	gap: var(--space-4);
	opacity: 0;
	width: 100%;
	transform: translateY(var(--space-3));
	flex-wrap: nowrap;
	transition: opacity .52s, transform .68s cubic-bezier(.22, 1, .36, 1);
	display: flex
}

.qr-support-visual-network .qr-support-country-row {
	opacity: 1;
	transform: translateY(0)
}

.qr-support-country-row p {
	color: var(--color-fg-muted);
	white-space: nowrap;
	margin: 0;
	font-size: 1rem;
	line-height: 1.5rem
}

.qr-support-country-list {
	align-items: center;
	gap: var(--space-3);
	flex-wrap: nowrap;
	flex: 0 auto;
	min-width: 0;
	display: flex
}

.qr-support-country-list span {
	min-height: 1.375rem;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-3);
	color: var(--color-fg-muted);
	white-space: nowrap;
	box-shadow: 0 var(--space-1) var(--space-3) var(--color-fg-strong);
	background: #fff;
	justify-content: center;
	align-items: center;
	font-size: .75rem;
	font-weight: 500;
	line-height: 1rem;
	display: inline-flex
}

.qr-support-country-list span {
	box-shadow: 0 var(--space-1) var(--space-3) color-mix(in oklab, var(--color-fg-strong) 7%, transparent)
}

.qr-support-card {
	border-radius: calc(var(--radius-6) + var(--space-4));
	background: #fff;
	width: 29.125rem;
	max-width: 100%;
	height: 20.4375rem;
	transition: width .72s cubic-bezier(.22, 1, .36, 1), height .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
	position: relative;
	overflow: hidden
}

.qr-support-visual-network .qr-support-card {
	width: 30rem;
	height: 28.625rem
}

.qr-support-card-layer {
	opacity: 0;
	pointer-events: none;
	flex-direction: column;
	justify-content: center;
	transition: opacity .46s, transform .72s cubic-bezier(.22, 1, .36, 1);
	display: flex;
	position: absolute;
	inset: 0
}

.qr-support-card-layer-merchants {
	align-items: flex-start;
	gap: .491438rem;
	padding: 1.23956rem;
	transform: scale(.985)
}

.qr-support-card-layer-network {
	transform: translateY(var(--space-4)) scale(.985);
	align-items: center;
	padding: 1.08763rem
}

.qr-support-visual-merchants .qr-support-card-layer-merchants,
.qr-support-visual-network .qr-support-card-layer-network {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0)scale(1)
}

.qr-support-logo-strip {
	flex: none;
	position: relative;
	overflow: hidden
}

.qr-support-logo-strip img {
	pointer-events: none;
	max-width: none;
	display: block;
	position: absolute
}

.qr-merchants-logo-strip-top {
	border-radius: .723063rem;
	width: 26.9696rem;
	height: 11.1598rem
}

.qr-merchants-logo-strip-bottom {
	border-radius: .751563rem;
	width: 27.5209rem;
	height: 6.6345rem
}

.qr-merchants-logo-strip-top img {
	width: 204.91%;
	height: 100.14%;
	top: .07%;
	left: -4.29%
}

.qr-merchants-logo-strip-bottom img {
	width: 208.72%;
	height: 175.08%;
	top: -.19%;
	left: -105.17%
}

.qr-network-logo-strip-top {
	width: 27.8248rem;
	height: 13.6858rem;
	margin-bottom: -.997rem
}

.qr-network-logo-strip-bottom {
	width: 26.9184rem;
	height: 13.5952rem
}

.qr-network-logo-strip-top img {
	width: 195.82%;
	height: 99.8%;
	top: .05%;
	left: -.08%
}

.qr-network-logo-strip-bottom img {
	width: 202.42%;
	height: 100.47%;
	top: -.31%;
	left: -102.22%
}

.qr-coverage-market-card {
	border-radius: var(--radius-2);
	background-color: var(--color-bg);
	justify-content: center;
	align-items: center;
	gap: var(--space-4);
	width: 100%;
	padding: var(--space-6);
	display: flex
}

.qr-coverage-market-card p {
	color: var(--color-fg-muted);
	margin: 0;
	font-size: 1rem;
	line-height: 1.5rem
}

.qr-coverage-country-list {
	justify-content: center;
	align-items: center;
	gap: var(--space-3);
	flex-wrap: wrap;
	display: flex
}

.qr-coverage-country-list span {
	min-height: 1.375rem;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-3);
	background: var(--color-surface);
	color: var(--color-fg-muted);
	white-space: nowrap;
	justify-content: center;
	align-items: center;
	font-size: .75rem;
	font-weight: 500;
	line-height: 1rem;
	display: inline-flex
}

.qr-payment-phone-visual,
.qr-scan-visual {
	justify-content: center;
	width: 100%;
	min-width: 0;
	height: 100%;
	display: flex
}

.qr-payment-phone-visual[data-mode=scan] {
	align-items: center
}

.qr-payment-phone-visual[data-mode=confirm],
.qr-payment-phone-visual[data-mode=success],
.qr-scan-visual {
	align-items: flex-start
}

.qr-payment-phone {
	border-radius: var(--radius-6);
	width: min(100%, 24.125rem);
	height: 49.5rem;
	max-height: 116%;
	transition: transform .68s cubic-bezier(.22, 1, .36, 1);
	position: relative;
	overflow: hidden
}

.qr-payment-phone-visual[data-mode=scan] .qr-payment-phone {
	transform-origin: 50%;
	transform: translateY(0)scale(.74)
}

.qr-payment-phone-visual[data-mode=confirm] .qr-payment-phone,
.qr-payment-phone-visual[data-mode=success] .qr-payment-phone {
	transform-origin: top;
	transform: translateY(5rem)scale(.96)
}

.qr-payment-phone:before {
	content: "";
	z-index: 0;
	border-radius: calc(var(--radius-6) + var(--space-8));
	background: var(--color-surface);
	position: absolute;
	inset: 1.2% 2%
}

.qr-payment-phone-visual[data-mode=scan] .qr-payment-phone:before {
	background: var(--gray-12)
}

.qr-payment-phone-visual[data-mode=confirm] .qr-payment-phone:before,
.qr-payment-phone-visual[data-mode=success] .qr-payment-phone:before {
	background: var(--color-surface)
}

.qr-payment-phone-frame {
	z-index: 3;
	object-fit: contain;
	opacity: 0;
	pointer-events: none;
	transition: opacity .46s
}

.qr-payment-phone-visual[data-mode=confirm] .qr-payment-phone-frame-confirm,
.qr-payment-phone-visual[data-mode=scan] .qr-payment-phone-frame-scan,
.qr-payment-phone-visual[data-mode=success] .qr-payment-phone-frame-success {
	opacity: 1
}

.qr-payment-phone-screen-layer {
	transition: opacity .42s, transform .68s cubic-bezier(.22, 1, .36, 1)
}

.qr-payment-phone-screen-layer-scan {
	opacity: 0;
	transform: translateY(calc(var(--space-3) * -1)) scale(.985)
}

.qr-payment-phone-screen-layer-confirm,
.qr-payment-phone-screen-layer-success {
	opacity: 0;
	transform: translateY(var(--space-4)) scale(.985)
}

.qr-payment-phone-visual[data-mode=confirm] .qr-payment-phone-screen-layer-confirm,
.qr-payment-phone-visual[data-mode=scan] .qr-payment-phone-screen-layer-scan,
.qr-payment-phone-visual[data-mode=success] .qr-payment-phone-screen-layer-success {
	opacity: 1;
	transform: translateY(0)scale(1)
}

.qr-scan-phone {
	border-radius: var(--radius-6);
	width: min(100%, 24.125rem);
	height: 49.5rem;
	max-height: 116%;
	transform: translateY(var(--space-8)) scale(.8);
	transform-origin: top;
	position: relative;
	overflow: hidden
}

.qr-scan-phone:before {
	content: "";
	z-index: 0;
	border-radius: calc(var(--radius-6) + var(--space-8));
	background: var(--gray-12);
	position: absolute;
	inset: 1.2% 2%
}

.qr-scan-phone-frame {
	z-index: 1;
	object-fit: contain;
	pointer-events: none
}

.qr-scan-phone-overlay {
	z-index: 2;
	width: 82.5%;
	height: 78%;
	color: var(--gray-1);
	flex-direction: column;
	display: flex;
	position: absolute;
	top: 8.5%;
	left: 8.75%;
	overflow: hidden
}

.qr-scan-phone-header {
	padding: var(--space-6) var(--space-5) 0;
	color: var(--gray-2);
	justify-content: space-between;
	align-items: center;
	display: flex
}

.qr-scan-phone-header p {
	color: var(--gray-1);
	font-weight: 700
}

.qr-scan-back-icon {
	width: var(--space-5);
	height: var(--space-5);
	display: block;
	position: relative
}

.qr-scan-back-icon img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.qr-scan-back-icon img:first-child {
	width: .5rem;
	height: .875rem;
	transform: translate(-82%, -50%)
}

.qr-scan-back-icon img:last-child {
	width: .875rem;
	height: .125rem;
	transform: translate(-34%, -50%)
}

.qr-scan-phone-body {
	justify-content: center;
	align-items: center;
	gap: var(--space-5);
	height: 74.5%;
	padding: var(--space-8) var(--space-6) var(--space-6);
	flex-direction: column;
	display: flex
}

.qr-scan-target {
	aspect-ratio: 1;
	width: min(100%, 15.4375rem);
	position: relative
}

.qr-scan-corner {
	width: var(--space-8);
	aspect-ratio: 1;
	border-color: #E6BA73;
	z-index: 3;
	border-style: solid;
	position: absolute
}

.qr-scan-corner-top-left {
	border-top-left-radius: var(--radius-3);
	border-width: 2px 0 0 2px;
	top: 0;
	left: 0
}

.qr-scan-corner-top-right {
	border-top-right-radius: var(--radius-3);
	border-width: 2px 2px 0 0;
	top: 0;
	right: 0
}

.qr-scan-corner-bottom-left {
	border-bottom-left-radius: var(--radius-3);
	border-width: 0 0 2px 2px;
	bottom: 0;
	left: 0
}

.qr-scan-corner-bottom-right {
	border-bottom-right-radius: var(--radius-3);
	border-width: 0 2px 2px 0;
	bottom: 0;
	right: 0
}

.qr-scan-target-pattern {
	border-radius: var(--radius-3);
	background: var(--gray-12);
	justify-content: center;
	align-items: center;
	display: flex;
	position: absolute;
	inset: 4.5%;
	overflow: hidden
}

.qr-scan-qr-image,
.qr-scan-texture-image {
	object-fit: cover;
	pointer-events: none
}

.qr-scan-texture-image {
	opacity: .28
}

.qr-scan-qr-image {
	opacity: .24;
	mix-blend-mode: screen;
	filter: grayscale()
}

.qr-scan-animated-line {
	z-index: 4;
	height: var(--space-2);
	border-radius: var(--radius-max);
	background: linear-gradient(180deg, transparent, var(--color-bg-brand), transparent);
	box-shadow: 0 0 var(--space-3) var(--color-bg-brand), 0 0 var(--space-6) var(--color-bg-brand);
	position: absolute;
	top: 50%;
	left: 4.5%;
	right: 4.5%
}

.qr-scan-animated-line {
	box-shadow: 0 0 var(--space-3) color-mix(in oklab, var(--color-bg-brand) 72%, transparent), 0 0 var(--space-6) color-mix(in oklab, var(--color-bg-brand) 42%, transparent)
}

.qr-scan-animated-line {
	animation: qr-scan-target-line 2.8s cubic-bezier(.45, 0, .2, 1) infinite alternate
}

.qr-scan-phone-caption {
	text-align: center;
	max-width: 15rem;
	color: var(--gray-7)
}

.qr-scan-actions {
	height: var(--space-11);
	position: absolute;
	bottom: 6.1%;
	left: 0;
	right: 0
}

.qr-scan-action {
	min-width: var(--space-8);
	align-items: center;
	gap: var(--space-2);
	color: var(--gray-8);
	text-align: center;
	white-space: nowrap;
	flex-direction: column;
	font-size: .6425rem;
	font-weight: 500;
	line-height: .85625rem;
	display: flex;
	position: absolute;
	top: 0
}

.qr-scan-action:first-child {
	left: 13.8%
}

.qr-scan-action:last-child {
	right: 13.8%
}

.qr-scan-action-icon {
	width: var(--space-8);
	height: var(--space-8);
	border-radius: var(--radius-5);
	background: var(--gray-11);
	justify-content: center;
	align-items: center;
	display: flex
}

.qr-scan-action-icon {
	background: color-mix(in oklab, var(--gray-11) 68%, var(--gray-12))
}

.qr-scan-action-icon img {
	width: var(--icon-md);
	height: var(--icon-md)
}

.qr-confirm-visual {
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	min-width: 0;
	height: 100%;
	display: flex
}

.qr-confirm-phone {
	border-radius: var(--radius-6);
	width: min(100%, 24.125rem);
	height: 49.5rem;
	max-height: 116%;
	transform: translateY(var(--space-8)) scale(.8);
	transform-origin: top;
	position: relative;
	overflow: hidden
}

.qr-confirm-phone:before {
	content: "";
	z-index: 0;
	border-radius: calc(var(--radius-6) + var(--space-8));
	background: var(--color-surface);
	position: absolute;
	inset: 1.2% 2%;
	display: none;
}

.qr-confirm-phone-frame {
	z-index: 3;
	object-fit: contain;
	pointer-events: none
}

.qr-success-visual {
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	min-width: 0;
	height: 100%;
	display: flex
}

.qr-success-phone {
	border-radius: var(--radius-6);
	width: min(100%, 24.125rem);
	height: 49.5rem;
	max-height: 116%;
	transform: translateY(var(--space-8)) scale(.8);
	transform-origin: top;
	position: relative;
	overflow: hidden
}

.qr-success-phone:before {
	content: "";
	z-index: 0;
	border-radius: calc(var(--radius-6) + var(--space-8));
	background: var(--color-surface);
	position: absolute;
	inset: 1.2% 2%
}

.qr-success-phone-frame {
	z-index: 3;
	object-fit: contain;
	pointer-events: none
}

.qr-confirm-screen {
	z-index: 1;
	border-radius: calc(var(--radius-6) + var(--space-4));
	background: var(--color-bg);
	width: 93.86%;
	height: 99.05%;
	color: var(--color-fg-strong);
	position: absolute;
	top: .25%;
	left: 3.07%;
	overflow: hidden
}

.qr-confirm-header {
	position: absolute;
	top: 9.35%;
	left: 5.95%
}

.qr-confirm-header h3 {
	color: var(--color-fg-strong);
	margin: 0;
	font-size: 1.301rem;
	font-weight: 700;
	line-height: 1.9515rem
}

.qr-confirm-header p {
	color: var(--color-fg-muted);
	margin: .125rem 0 0;
	font-size: .845625rem;
	line-height: 1.2685rem
}

.qr-confirm-merchant-card {
	background: var(--color-surface);
	gap: 3.65%;
	width: 88.1%;
	height: 9.95%;
	padding-left: 4.75%;
	position: absolute;
	top: 20.8%;
	left: 6.05%
}

.qr-confirm-merchant-card,
.qr-confirm-merchant-icon {
	border-radius: var(--radius-3);
	align-items: center;
	display: flex
}

.qr-confirm-merchant-icon {
	background: var(--color-border);
	flex: none;
	justify-content: center;
	width: 2.60188rem;
	height: 2.60188rem
}

.qr-confirm-merchant-icon img {
	width: var(--icon-md);
	height: var(--icon-md)
}

.qr-confirm-merchant-card span span,
.qr-confirm-merchant-card strong {
	display: block
}

.qr-confirm-merchant-card strong {
	color: var(--color-fg-strong);
	font-size: .97575rem;
	font-weight: 700;
	line-height: 1.46363rem
}

.qr-confirm-merchant-card span span {
	color: var(--color-fg-muted);
	font-size: .780625rem;
	line-height: 1.17088rem
}

.qr-confirm-amount {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 33.5%;
	left: 0
}

.qr-confirm-amount p {
	color: var(--color-fg-muted);
	margin: 0;
	font-size: .910688rem;
	font-weight: 500;
	line-height: 1.36606rem
}

.qr-confirm-amount strong {
	color: var(--color-fg-strong);
	margin-top: .75rem;
	font-size: 1.82144rem;
	font-weight: 700;
	line-height: 2.73213rem;
	display: block
}

.qr-confirm-amount span {
	color: var(--color-fg-muted);
	margin-top: .375rem;
	font-size: 1.04081rem;
	font-weight: 500;
	line-height: 1.56119rem;
	display: block
}

.qr-confirm-detail-card {
	border-radius: var(--radius-3);
	background: var(--color-surface-elevated);
	flex-direction: column;
	justify-content: center;
	width: 88.1%;
	height: 17.9%;
	padding: 0 4.6%;
	display: flex;
	position: absolute;
	top: 51.75%;
	left: 6.05%
}

.qr-confirm-detail-row {
	border-bottom: 1px solid var(--color-border);
	min-height: 2.375rem;
	color: var(--color-fg-muted);
	justify-content: space-between;
	align-items: center;
	font-size: .845625rem;
	line-height: 1.2685rem;
	display: flex
}

.qr-confirm-detail-row:last-child {
	border-bottom: 0
}

.qr-confirm-detail-row strong {
	color: var(--color-fg-strong);
	font-weight: 700
}

.qr-confirm-detail-row .qr-confirm-brand-value {
	color: var(--color-bg-brand)
}

.qr-confirm-balance-row {
	align-items: center;
	gap: var(--space-2);
	border-radius: var(--radius-3);
	background: var(--color-surface);
	width: 88.1%;
	height: 5.42%;
	color: var(--color-fg);
	grid-template-columns: auto 1fr auto auto;
	padding: 0 4.7%;
	font-size: .845625rem;
	font-weight: 500;
	line-height: 1.2685rem;
	display: grid;
	position: absolute;
	top: 71.3%;
	left: 6.05%
}

.qr-confirm-balance-row strong {
	color: var(--color-fg-strong);
	font-weight: 700
}

.qr-confirm-button {
	justify-content: center;
	align-items: center;
	gap: var(--space-2);
	border-radius: var(--radius-4);
	background: var(--color-bg-brand);
	width: 88.1%;
	height: 7.13%;
	color: var(--gray-12);
	pointer-events: none;
	border: 0;
	font-size: 1.04081rem;
	font-weight: 600;
	line-height: 1.56119rem;
	display: flex;
	position: absolute;
	top: 80.75%;
	left: 6.05%
}

.qr-success-screen {
	z-index: 1;
	border-radius: calc(var(--radius-6) + var(--space-4));
	background: var(--color-surface);
	width: 93.86%;
	height: 99.05%;
	color: var(--color-fg-strong);
	position: absolute;
	top: .25%;
	left: 3.07%;
	overflow: hidden
}

.qr-success-header {
	top: 9.85%;
	left: 4.65%;
	right: 4.65%
}

.qr-success-back-button,
.qr-success-header {
	justify-content: center;
	align-items: center;
	display: flex;
	position: absolute
}

.qr-success-back-button {
	width: var(--space-6);
	height: var(--space-6);
	border-radius: var(--radius-max);
	background: var(--color-bg);
	left: 0
}

.qr-success-header h3 {
	color: var(--color-fg-strong);
	margin: 0;
	font-size: .918313rem;
	font-weight: 600;
	line-height: 1.32644rem
}

.qr-success-amount {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 19.45%;
	left: 0
}

.qr-success-amount p {
	color: var(--color-fg-strong);
	margin: 0;
	font-weight: 600
}

.qr-success-amount strong {
	letter-spacing: 0;
	font-size: 2.125rem;
	line-height: 2.375rem
}

.qr-success-amount p span {
	margin-left: .25rem;
	font-size: 1rem;
	line-height: 2.375rem
}

.qr-success-settled-badge {
	justify-content: center;
	align-items: center;
	gap: var(--space-1);
	min-width: 4.57681rem;
	height: 1.4285rem;
	margin-top: var(--space-3);
	border-radius: var(--radius-max);
	background: var(--color-success);
	display: inline-flex
}

.qr-success-settled-badge {
	background: color-mix(in oklab, var(--color-success) 15%, transparent)
}

.qr-success-settled-badge {
	color: var(--color-success-foreground);
	font-size: .66325rem;
	font-weight: 600;
	line-height: .994813rem
}

.qr-success-flow-card {
	grid-template-columns: minmax(0, 1fr) var(--space-6) minmax(0, 1fr);
	width: 85.4%;
	padding: var(--space-3);
	border-radius: var(--radius-4);
	background: var(--color-bg);
	place-items: center;
	display: grid;
	position: absolute;
	top: 35.4%;
	left: 7.3%
}

.qr-success-flow-party {
	text-align: center;
	flex-direction: column;
	align-items: center;
	gap: .306125rem;
	min-width: 0;
	display: flex
}

.qr-success-currency-dot {
	border-radius: var(--radius-max);
	background: var(--color-border);
	width: 1.4285rem;
	height: 1.4285rem;
	color: var(--color-fg);
	justify-content: center;
	align-items: center;
	font-size: .71425rem;
	font-weight: 600;
	line-height: 1.02038rem;
	display: flex
}

.qr-success-flow-party span:not(.qr-success-currency-dot) {
	color: var(--color-fg-muted);
	white-space: nowrap;
	font-size: .612188rem;
	font-weight: 500;
	line-height: .918313rem
}

.qr-success-flow-party strong {
	color: var(--color-fg-strong);
	font-size: .867313rem;
	font-weight: 600;
	line-height: 1.30094rem
}

.qr-success-detail-card {
	width: 85.4%;
	padding: var(--space-4) var(--space-4) var(--space-3);
	border-radius: var(--radius-4);
	background: var(--color-bg);
	position: absolute;
	top: 52.9%;
	left: 7.3%
}

.qr-success-detail-card h4 {
	margin: 0 0 var(--space-3);
	color: var(--color-fg-strong);
	font-size: .867313rem;
	font-weight: 600;
	line-height: 1.30094rem
}

.qr-success-detail-card dl {
	gap: var(--space-2);
	margin: 0;
	display: grid
}

.qr-success-detail-card dl>div {
	justify-content: space-between;
	align-items: center;
	gap: var(--space-3);
	min-height: 1.07138rem;
	display: flex
}

.qr-success-detail-card dd,
.qr-success-detail-card dt {
	white-space: nowrap;
	margin: 0;
	font-size: .71425rem;
	font-weight: 500;
	line-height: 1.07138rem
}

.qr-success-detail-card dt {
	color: var(--color-fg-muted)
}

.qr-success-detail-card dd {
	justify-content: flex-end;
	align-items: center;
	gap: var(--space-1);
	min-width: 0;
	color: var(--color-fg-strong);
	text-align: right;
	display: flex
}

.qr-success-done-button {
	border-radius: var(--radius-3);
	background: var(--color-primary);
	width: 85.4%;
	height: 5.54%;
	color: var(--color-primary-foreground);
	pointer-events: none;
	border: 0;
	justify-content: center;
	align-items: center;
	font-size: .867313rem;
	font-weight: 600;
	line-height: 1.30094rem;
	display: flex;
	position: absolute;
	top: 87.25%;
	left: 7.3%
}

@keyframes qr-stage-enter {
	0% {
		opacity: 0;
		transform: translateY(var(--space-2)) scale(.99)
	}

	to {
		opacity: 1;
		transform: translateY(0)scale(1)
	}
}

@keyframes qr-stage-layer-enter {
	0% {
		opacity: 0;
		transform: translateY(var(--space-3)) scale(.985)
	}

	to {
		opacity: 1;
		transform: translateY(0)scale(1)
	}
}

@keyframes qr-stage-layer-exit {
	0% {
		opacity: 1;
		transform: translateY(0)scale(1)
	}

	to {
		opacity: 0;
		transform: translateY(calc(var(--space-2) * -1)) scale(.99)
	}
}

@keyframes qr-select-showcase-enter {
	0% {
		opacity: 0;
		transform: translateY(var(--space-4)) scale(.98)
	}

	to {
		opacity: 1;
		transform: translateY(0)scale(1)
	}
}

@keyframes qr-select-scene-float {

	0%,
	to {
		transform: translateY(0)
	}

	50% {
		transform: translateY(calc(var(--space-2) * -1))
	}
}

@keyframes qr-scan-target-line {
	0% {
		transform: translateY(calc(-7.71875rem + var(--space-5)))
	}

	to {
		transform: translateY(calc(7.71875rem - var(--space-7)))
	}
}

.qr-phone-shell {
	width: min(100%, 22rem);
	padding: var(--space-2);
	border-radius: var(--radius-6);
	background: var(--gray-12);
	box-shadow: var(--shadow-5)
}

.qr-phone-screen {
	min-height: 31rem;
	padding: var(--space-4);
	border-radius: var(--radius-5);
	background: var(--color-surface);
	flex-direction: column;
	display: flex
}

.qr-demo-merchant-scene {
	min-height: 18rem
}

.qr-demo-pattern {
	gap: var(--space-1);
	aspect-ratio: 1;
	width: 12rem;
	padding: var(--space-3);
	background: var(--gray-12);
	border-radius: var(--radius-2);
	grid-template-columns: repeat(7, minmax(0, 1fr));
	display: grid
}

.qr-demo-pattern span {
	background: var(--gray-8);
	border-radius: var(--radius-1)
}

.qr-demo-pattern span:nth-child(3n),
.qr-demo-pattern span:nth-child(5n) {
	background: var(--gray-3)
}

.qr-scan-frame {
	padding: var(--space-3);
	border: 1px solid var(--color-bg-brand);
	border-radius: var(--radius-3);
	position: relative;
	overflow: hidden
}

.qr-scan-line {
	left: var(--space-3);
	right: var(--space-3);
	top: var(--space-3);
	height: var(--space-1);
	background: var(--color-bg-brand);
	box-shadow: 0 0 var(--space-4) var(--color-bg-brand);
	animation: qr-scan-line 2.4s cubic-bezier(.22, 1, .36, 1) infinite;
	position: absolute
}

@keyframes qr-scan-line {
	0% {
		transform: translateY(0)
	}

	to {
		transform: translateY(12rem)
	}
}

.qr-success-check {
	animation: qr-success-check .36s cubic-bezier(.22, 1, .36, 1) both
}

@keyframes qr-success-check {
	0% {
		transform: scale(.78)
	}

	to {
		transform: scale(1)
	}
}

@media (min-width:1024px) {
	.qr-inspection-layout {
		grid-template-columns: minmax(28rem, 34rem) minmax(0, 1fr)
	}

	.qr-inspection-left-panel {
		padding: var(--space-8) 0 var(--space-8) var(--space-8)
	}

	.qr-inspection-visual-panel {
		height: 100%
	}

	.qr-demo-stage {
		border-radius: 0;
		width: 100%;
		height: 100%
	}
}

@media (max-width:767px) {
	.qr-inspection-layout {
		gap: 0;
		min-height: auto
	}

	.qr-inspection-panel {
		overflow: visible
	}

	.qr-inspection-sidebar {
		display: block
	}

	.qr-inspection-left-panel {
		min-width: 0;
		padding: var(--space-4) 0 var(--space-5)
	}

	.qr-inspection-list {
		--qr-inspection-mobile-gap: var(--space-1);
		gap: var(--qr-inspection-mobile-gap);
		padding: 0 var(--space-4) var(--space-1);
		scroll-padding-inline: var(--space-4);
		scrollbar-width: none
	}

	.qr-inspection-list::-webkit-scrollbar {
		display: none
	}

	.qr-inspection-list>div {
		align-items: center
	}

	.qr-inspection-list>div,
	.qr-inspection-list>div>div {
		gap: var(--qr-inspection-mobile-gap)
	}

	.qr-inspection-item,
	.qr-inspection-item[aria-pressed=true] {
		width: auto;
		max-width: none;
		min-height: var(--space-8);
		border-radius: var(--radius-max);
		padding: var(--space-2) var(--space-5) var(--space-2) var(--space-2);
		flex-direction: row;
		align-items: center;
		font-size: .875rem
	}

	.qr-inspection-item>span:first-child {
		gap: var(--space-2);
		font-size: .875rem;
		line-height: 1.25rem
	}

	.qr-inspection-item>span:first-child>span:first-child {
		width: var(--space-6);
		height: var(--space-6)
	}

	.qr-inspection-item>span:first-child svg {
		width: var(--icon-sm);
		height: var(--icon-sm)
	}

	.qr-inspection-item:hover {
		transform: none
	}

	.qr-inspection-copy,
	.qr-inspection-copy[data-state=active] {
		display: none
	}

	.qr-demo-stage {
		border-radius: 0;
		height: auto;
		min-height: 34rem;
		overflow: hidden
	}

	.qr-select-showcase {
		width: min(100%, 21rem);
		height: 31rem
	}

	.qr-select-scene-card-main {
		width: 16.75rem;
		height: 11.25rem;
		top: 5rem;
		left: 2.25rem
	}

	.qr-select-scene-card-cafe {
		width: 12rem;
		height: 8rem;
		top: 1.75rem;
		left: .5rem
	}

	.qr-select-scene-card-restaurant {
		width: 13.75rem;
		height: 9.25rem;
		bottom: 5rem;
		right: .25rem
	}

	.qr-select-scene-card-retail {
		width: 10.25rem;
		height: 7.25rem;
		bottom: 3rem;
		left: .75rem
	}

	.qr-stage-layer {
		overflow: hidden
	}

	.qr-settlement-visual {
		width: 100%;
		height: 34rem;
		min-height: 34rem
	}

	.qr-settlement-card {
		gap: var(--space-4);
		width: min(100%, 18rem);
		padding: var(--space-4);
		border-radius: calc(var(--radius-6) + var(--space-2))
	}

	.qr-settlement-pill {
		min-height: 3.5rem;
		font-size: 1.25rem
	}

	.qr-settlement-pill img:first-child {
		width: var(--space-5);
		height: var(--space-5)
	}

	.qr-settlement-body {
		gap: var(--space-4)
	}

	.qr-settlement-qr {
		width: 8.75rem
	}

	.qr-settlement-copy {
		max-width: 16.5rem;
		font-size: .875rem
	}

	.qr-settlement-rail {
		--rail-step: 2.375rem;
		width: 9.875rem;
		height: 3.25rem
	}

	.qr-settlement-rail[data-variant=users] {
		top: 1.25rem
	}

	.qr-settlement-rail[data-variant=merchants] {
		bottom: 1.25rem
	}

	.qr-settlement-avatar {
		width: 3.25rem;
		height: 3.25rem
	}

	.qr-support-visual {
		gap: var(--space-4);
		width: min(100%, 24rem);
		min-height: 34rem;
		padding: var(--space-4)
	}

	.qr-support-country-row {
		align-items: center;
		gap: var(--space-2);
		padding-bottom: var(--space-1);
		flex-direction: column;
		justify-content: center;
		overflow-x: visible
	}

	.qr-support-country-list {
		justify-content: center;
		gap: var(--space-2);
		grid-template-columns: repeat(6, max-content);
		display: grid
	}

	.qr-support-country-list span {
		grid-column: span 2
	}

	.qr-support-country-list span:nth-child(4) {
		grid-column: 2/span 2
	}

	.qr-support-card {
		border-radius: calc(var(--radius-6) + var(--space-2));
		width: min(100%, 21rem);
		height: 15.25rem
	}

	.qr-support-visual-network .qr-support-card {
		width: min(100%, 21rem);
		height: 20.5rem
	}

	.qr-support-card-layer-merchants {
		padding: var(--space-4);
		gap: .375rem
	}

	.qr-merchants-logo-strip-bottom,
	.qr-merchants-logo-strip-top {
		width: 100%
	}

	.qr-merchants-logo-strip-top {
		height: 8.75rem
	}

	.qr-merchants-logo-strip-bottom {
		height: 5.25rem
	}

	.qr-network-logo-strip-bottom,
	.qr-network-logo-strip-top {
		width: 100%
	}

	.qr-network-logo-strip-top {
		height: 10.125rem;
		margin-bottom: -.75rem
	}

	.qr-network-logo-strip-bottom {
		height: 10rem
	}

	.qr-scan-phone {
		width: min(100%, 20rem);
		height: 41.125rem;
		max-height: none;
		transform: none
	}

	.qr-payment-phone-visual[data-mode=confirm],
	.qr-payment-phone-visual[data-mode=scan],
	.qr-payment-phone-visual[data-mode=success] {
		align-items: center
	}

	.qr-payment-phone-visual[data-mode=confirm],
	.qr-payment-phone-visual[data-mode=success] {
		align-items: flex-start
	}

	.qr-payment-phone {
		transform-origin: 50%;
		width: min(100%, 24.125rem);
		height: 49.5rem;
		max-height: none;
		margin-top: 0;
		transform: scale(.62)
	}

	.qr-payment-phone-visual[data-mode=scan] .qr-payment-phone {
		width: min(100%, 24.125rem);
		height: 49.5rem;
		transform: translateY(var(--space-4)) scale(.62);
		transform-origin: 50%;
		margin-top: 0
	}

	.qr-payment-phone-visual[data-mode=confirm] .qr-payment-phone,
	.qr-payment-phone-visual[data-mode=success] .qr-payment-phone {
		width: min(100%, 24.125rem);
		height: 49.5rem;
		transform: translateY(var(--space-8)) scale(.76);
		transform-origin: top;
		margin-top: 0
	}

	.qr-confirm-phone,
	.qr-success-phone {
		width: min(100%, 20rem);
		height: 41.125rem;
		max-height: none;
		transform: none
	}

	.qr-scan-phone-header {
		padding: var(--space-8) var(--space-5) 0
	}

	.qr-scan-phone-body {
		gap: var(--space-5);
		padding: var(--space-6) var(--space-5) var(--space-8)
	}

	.qr-scan-target {
		width: min(100%, 13rem)
	}

	.qr-scan-animated-line {
		animation-name: qr-scan-target-line-mobile
	}

	.qr-phone-shell {
		width: min(100%, 20rem)
	}

	.qr-phone-screen {
		min-height: 28rem
	}
}

@media (prefers-reduced-motion:reduce) {

	.qr-inspection-copy,
	.qr-inspection-item,
	.qr-payment-phone,
	.qr-payment-phone-frame,
	.qr-payment-phone-screen-layer,
	.qr-scan-animated-line,
	.qr-scan-line,
	.qr-select-scene-card,
	.qr-select-showcase,
	.qr-settlement-avatar,
	.qr-stage-layer-enter,
	.qr-stage-layer-exit,
	.qr-success-check {
		transition: none;
		animation: none
	}

	.qr-demo-stage {
		animation: none
	}

	.qr-stage-layer-enter {
		opacity: 1;
		transform: none
	}

	.qr-stage-layer-exit {
		opacity: 0;
		transform: none
	}
}

@keyframes qr-scan-target-line-mobile {
	0% {
		transform: translateY(calc(-6.5rem + var(--space-5)))
	}

	to {
		transform: translateY(calc(6.5rem - var(--space-7)))
	}
}

:root {
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 24px;
	--space-6: 32px;
	--space-7: 40px;
	--space-8: 48px;
	--space-9: 64px;
	--space-10: 80px;
	--space-11: 96px;
	--radius-1: 6px;
	--radius-2: 8px;
	--radius-3: 10px;
	--radius-4: 14px;
	--radius-5: 18px;
	--radius-6: 24px;
	--radius-max: 999px;
	--icon-sm: 16px;
	--icon-md: 20px;
	--shadow-5: 0 0 0 1px #00000026, 0 12px 60px #0000004d, 0 12px 32px -16px #00000080;
	--color-bg: var(--bg);
	--color-surface: var(--surface);
	--color-surface-elevated: var(--bg);
	--color-bg-brand: var(--brand-9);
	--color-fg: var(--fg);
	--color-fg-strong: var(--fg-strong);
	--color-fg-muted: var(--fg-muted);
	--color-border: var(--border);
	--color-border-strong: var(--gray-6);
	--color-primary: var(--gray-12);
	--color-primary-foreground: var(--gray-1);
	--color-success: #30a46c;
	--color-success-foreground: #193b2d;
}

.qr-section {
	position: relative;
	isolation: isolate;
	width: 100%;
	background: var(--surface);
	padding: 64px 0;
}

@media (min-width:640px) {
	.qr-section {
		padding: 80px 0;
	}
}

.qr-section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	max-width: 56rem;
	text-align: center;
}

.qr-section-eyebrow {
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: var(--color-bg-brand);
}

.qr-section-title {
	margin-top: var(--space-2);
	font-size: 2.25rem;
	line-height: 1.15;
	font-weight: 700;
	color: var(--fg-strong);
}

.qr-section-desc {
	margin-top: var(--space-4);
	max-width: 42rem;
	font-size: 1rem;
	line-height: 1.5rem;
	color: var(--fg-muted);
}

@media (min-width:1024px) {
	.qr-section-title {
		font-size: 3rem;
	}
}

.qr-inspection-container {
	margin: 0 auto;
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: var(--space-8);
	padding: 0 var(--space-4);
}

@media (min-width:1024px) {
	.qr-inspection-container {
		padding: 0 var(--space-8);
	}
}

.qr-inspection-panel {
	border-radius: var(--radius-4);
	background: var(--bg);
	padding: 0;
}

.qr-inspection-layout {
	display: grid;
	gap: var(--space-6);
}

@media (min-width:1024px) {
	.qr-inspection-layout {
		gap: 0;
	}
}

.qr-inspection-left-panel {
	order: 2;
	min-width: 0;
}

.qr-inspection-visual-panel {
	order: 1;
	display: flex;
	min-height: 0;
}

@media (min-width:1024px) {
	.qr-inspection-left-panel {
		order: 1;
	}

	.qr-inspection-visual-panel {
		order: 2;
	}
}

.qr-inspection-nav {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-5);
}

@media (min-width:1024px) {
	.qr-inspection-nav {
		display: flex;
	}
}

.qr-inspection-nav svg {
	width: var(--icon-md);
	height: var(--icon-md);
}

.qr-inspection-list {
	display: flex;
	gap: var(--space-4);
	overflow-x: auto;
	padding-bottom: var(--space-1);
	scrollbar-width: none;
}

.qr-inspection-list::-webkit-scrollbar {
	display: none;
}

@media (min-width:1024px) {
	.qr-inspection-list {
		flex-direction: column;
		overflow: hidden;
		padding-bottom: 0;
	}
}

.qr-inspection-group {
	display: flex;
	flex-shrink: 0;
	gap: var(--space-3);
}

@media (min-width:1024px) {
	.qr-inspection-group {
		flex-direction: column;
		flex-shrink: 1;
	}
}

.qr-inspection-group-label {
	display: none;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: var(--fg-muted);
}

@media (min-width:1024px) {
	.qr-inspection-group-label {
		display: block;
	}
}

.qr-inspection-group-items {
	display: flex;
	gap: var(--space-3);
}

@media (min-width:1024px) {
	.qr-inspection-group-items {
		flex-direction: column;
	}
}

.qr-inspection-item {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	min-height: 2.5rem;
	padding: var(--space-3) var(--space-4);
	border: 0;
	text-align: left;
	cursor: pointer;
	background: var(--surface);
	color: var(--fg);
}

.qr-inspection-item:hover {
	color: var(--fg-strong);
}

.qr-inspection-item[aria-pressed="true"] {
	width: 20rem;
	max-width: 100%;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}

@media (min-width:1024px) {
	.qr-inspection-item {
		width: fit-content;
		max-width: 100%;
	}

	.qr-inspection-item[aria-pressed="true"] {
		width: 100%;
	}
}

.qr-inspection-item:focus-visible {
	outline: 2px solid var(--brand-9);
	outline-offset: 2px;
}

.qr-inspection-item-head {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
}

.qr-inspection-item-head>span:last-child {
	white-space: nowrap;
}

.qr-inspection-item-icon {
	display: flex;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-max);
	background: var(--bg);
	color: var(--fg-strong);
}

.qr-inspection-item-icon svg {
	width: var(--icon-sm);
	height: var(--icon-sm);
}

.qr-inspection-copy>span {
	display: block;
	font-size: .875rem;
	line-height: 1.25rem;
}

.qr-select-scene-card img,
.qr-settlement-avatar-image,
.qr-settlement-qr img,
.qr-payment-phone-frame,
.qr-scan-phone-frame,
.qr-confirm-phone-frame,
.qr-success-phone-frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.qr-settlement-avatar-image {
	object-fit: cover;
}

.qr-select-scene-card img {
	object-fit: cover;
}

.qr-demo-stage {
	position: relative;
}

.qr-stage-layer.is-hidden {
	display: none;
}

.qr-support-country-list span {
	white-space: nowrap;
}

.qr-settlement-avatar {
	overflow: hidden;
}

.qr-settlement-avatar-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.why-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
}

.why-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-6);
	padding: var(--sp-6);
	background: var(--surface);
	border-radius: var(--r-2);
	width: 100%;
	min-height: 300px;
	overflow: hidden;
}

.why-text h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: var(--fg-strong);
}

.why-text p {
	margin-top: 4px;
	white-space: pre-line;
	font-size: 14px;
	line-height: 20px;
	color: var(--fg-muted);
}

.why-text.center {
	text-align: center;
}

.why-text.center p {
	margin-left: auto;
	margin-right: auto;
	max-width: 360px;
}

.why-visual {
	position: relative;
	flex: 1;
	min-height: 0;
}

.why-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.why-visual-fixed {
	height: 240px;
	flex: none;
}

.why-visual-abs {
	position: absolute;
	inset: 0;
}

.why-visual-abs img {
	transform: scale(1.14);
}

.why-card-a {
	min-height: 320px;
}

.why-card-b {
	min-height: 360px;
}

.why-card-c {
	position: relative;
	justify-content: center;
	min-height: 300px;
}

.why-card-c .why-text {
	position: relative;
	z-index: 10;
}

.why-card-d {
	justify-content: center;
}

.ucard {
	background: var(--surface);
	padding-top: 64px;
	padding-bottom: 0;
	overflow: hidden;
}

.ucard-inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-12, 48px);
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 var(--sp-4);
}

.ucard-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-4);
	text-align: center;
}

.ucard-head h2 {
	font-size: 36px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--fg-strong);
}

.ucard-head p {
	font-size: 14px;
	line-height: 24px;
	color: var(--fg-muted);
}

.ucard-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-8) var(--sp-4);
}

.ucard-grid article {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	min-width: 0;
	text-align: left;
}

.ucard-grid svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--fg-strong);
}

.ucard-grid h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 32px;
	color: var(--fg-strong);
}

.ucard-lines {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 12px;
	line-height: 20px;
	color: var(--fg-muted);
}

.cardgroup-viewport {
	--cardgroup-size: 1060px;
	--cardgroup-lift: -58%;
	position: relative;
	width: 100%;
	height: 332px;
	overflow: hidden;
}

.cardgroup-orbit {
	position: absolute;
	left: 50%;
	bottom: calc(var(--cardgroup-size) * var(--cardgroup-lift));
	width: var(--cardgroup-size);
	aspect-ratio: 1;
	transform-origin: 50%;
	transform: translateX(-50%);
	will-change: transform;
	animation: cardgroup-spin 24s linear infinite;
}

.cardgroup-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

@keyframes cardgroup-spin {
	from {
		transform: translateX(-50%) rotate(0);
	}

	to {
		transform: translateX(-50%) rotate(360deg);
	}
}

.safe-grid {
	display: grid;
	gap: var(--sp-4);
	grid-template-columns: 1fr;
}

.safe-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	min-height: 184px;
	padding: var(--sp-4);
	background: var(--surface);
	border-radius: var(--r-2);
}

.safe-card h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	color: var(--fg-strong);
}

.safe-lines {
	margin-top: var(--sp-2);
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	font-size: 14px;
	line-height: 20px;
	color: var(--fg-muted);
}

.faq {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}

.faq-head h2 {
	font-size: 24px;
	font-weight: 600;
	color: var(--fg-strong);
}

.faq-head p {
	margin-top: var(--sp-2);
	font-size: 16px;
	color: var(--fg);
}

.faq-card {
	background: var(--surface);
	border-radius: 12px;
	padding: 24px 0;
}

.faq-list {
	padding: 16px 24px 0;
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
}

.faq-item {
	padding-bottom: var(--sp-4);
	border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.faq-q {
	font-size: 14px;
	font-weight: 500;
	color: var(--fg-strong);
}

.faq-a {
	margin-top: var(--sp-2);
	font-size: 14px;
	color: var(--fg-muted);
}

.footer {
	background: var(--brand);
	color: var(--fg-strong);
}

.footer-inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-12, 48px);
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px var(--sp-4);
}

.footer-left {
	order: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--sp-10, 40px);
	max-width: 448px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: var(--sp-8);
}

.footer-brand img {
	height: 40px;
	width: auto;
	object-fit: contain;
	object-position: left;
}

.footer-slogan {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	max-width: 448px;
}

.footer-lead {
	font-size: 16px;
	line-height: 24px;
}

.footer-sub,
.footer-copy {
	font-size: 14px;
	line-height: 24px;
}

.footer-right {
	order: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-10, 40px) var(--sp-8);
}

.footer-right h3 {
	font-size: 12px;
	font-weight: 500;
	line-height: 24px;
}

.footer-right ul {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	margin-top: var(--sp-6);
}

.footer-right a {
	font-size: 14px;
	line-height: 24px;
}

.footer-right a:hover {
	text-decoration: underline;
}

.footer-wordmark {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--sp-4) 24px;
}

.footer-wordmark img {
	width: 100%;
	height: auto;
}

.agent-shell {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 40;
	height: 44px;
	width: 160px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg);
	border-radius: var(--r-max);
	box-shadow: var(--shadow-2);
	transition: width .36s cubic-bezier(.22, 1, .36, 1), height .36s cubic-bezier(.22, 1, .36, 1),
		border-radius .36s cubic-bezier(.22, 1, .36, 1);
}

.agent-shell.is-open {
	width: 380px;
	height: 520px;
	border-radius: var(--r-6);
}

.agent-launcher {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	padding: 0 var(--sp-4);
	font-size: 12px;
	font-weight: 500;
	transition: opacity .15s, transform .15s;
}

.agent-shell.is-open .agent-launcher {
	opacity: 0;
	pointer-events: none;
}

.agent-avatar {
	display: inline-flex;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: var(--r-max);
}

.agent-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.agent-avatar.sm {
	width: 20px;
	height: 20px;
}

.agent-panel {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	background: var(--bg);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity .15s, transform .15s;
}

.agent-shell.is-open .agent-panel {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.agent-header {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	padding: 12px 14px;
	border-bottom: 1px solid var(--border-subtle);
}

.agent-header h2 {
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.agent-body {
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp-3);
	padding: 24px 20px;
	text-align: center;
	overflow-y: auto;
}

.agent-hello h3 {
	font-size: 14px;
	font-weight: 500;
}

.agent-hello p {
	margin-top: 6px;
	font-size: 14px;
	color: var(--fg-muted);
}

.agent-suggest {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	width: 100%;
	max-width: 384px;
}

.agent-form {
	flex-shrink: 0;
	display: flex;
	align-items: flex-end;
	gap: var(--sp-2);
	padding: 12px 12px 20px;
}

.agent-form textarea {
	flex: 1;
	min-height: 40px;
	max-height: 120px;
	padding: 12px;
	font: inherit;
	font-size: 14px;
	color: var(--fg);
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--r-2);
	resize: none;
	outline: none;
}

.agent-send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: var(--r-2);
	background: var(--fg-strong);
	color: var(--gray-1);
}

.agent-send svg {
	width: 16px;
	height: 16px;
}

@media (min-width:768px) {
	.footer-right {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		max-width: 768px;
	}

	.keywords-list p {
		font-size: 48px;
	}

	.ecosystem-head h2 {
		font-size: 36px;
	}

	.ecosystem-desc {
		font-size: 16px;
	}

	.ecosystem-marquee-item img {
		height: 32px;
	}
}

@media (min-width:1024px) {
	.header-inner {
		grid-template-columns: auto 1fr auto;
		padding: 0 var(--sp-8);
	}

	.header-nav {
		display: flex;
	}

	.header-desktop {
		display: flex;
	}

	.btn-mobile,
	.icon-btn-mobile {
		display: none;
	}

	.corner {
		display: block;
	}

	.hero-panel {
		display: block;
		min-height: 120svh;
		padding: 0;
	}

	.hero-title-left {
		position: absolute;
		left: var(--content-edge);
		top: var(--hero-title-top);
		max-width: min(42rem, 45vw);
	}

	.hero-title-right {
		position: absolute;
		right: var(--content-edge);
		top: calc(var(--hero-title-top) + var(--hero-eyebrow-line) + var(--sp-4) + var(--hero-heading-leading));
		max-width: min(48rem, 49vw);
		text-align: right;
	}

	.hero-heading {
		margin-top: var(--sp-4);
		font-size: var(--hero-heading-size);
		line-height: var(--hero-heading-leading);
	}

	.hero-heading-right {
		text-align: right;
		margin-left: auto;
	}

	.hero-store-badges {
		position: absolute;
		left: var(--content-edge);
		top: calc(var(--hero-title-top) + var(--hero-eyebrow-line) + var(--sp-4) + var(--hero-heading-leading) * 2 + calc(var(--sp-8) * 2.4));
		margin-top: 0;
		gap: var(--sp-4);
		--store-badge-height: 3rem;
	}

	.hero-description {
		position: absolute;
		left: var(--content-edge);
		bottom: calc(20svh + var(--sp-8));
		margin-top: 0;
		max-width: 37rem;
	}

	.hero-badges {
		position: absolute;
		right: var(--content-edge);
		bottom: calc(20svh + var(--sp-8));
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: var(--sp-3);
	}

	.scene {
		min-height: 120svh;
	}

	.keywords-panel {
		min-height: 120svh;
	}

	.keywords-list {
		margin-left: var(--content-edge);
		gap: clamp(calc(var(--sp-8) * 1.4), 11svh, calc(var(--sp-8) * 3.6));
	}

	.scenario-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--sp-6);
	}

	.scenario-card {
		padding: var(--sp-4);
	}

	.scenario-copy h3 {
		font-size: 20px;
		line-height: 28px;
	}

	.qr-container {
		padding: 0 var(--sp-8);
	}

	.qr-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0;
	}

	.qr-left {
		order: 1;
	}

	.qr-visual {
		order: 2;
	}

	.qr-sidebar {
		display: flex;
		gap: var(--sp-4);
	}

	.qr-nav {
		display: flex;
	}

	.qr-list {
		flex-direction: column;
		overflow: hidden;
	}

	.qr-group-label {
		display: block;
	}

	.qr-item {
		width: fit-content;
		max-width: 100%;
	}

	.qr-item.is-active {
		width: 320px;
	}

	.safe-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: var(--sp-7);
	}

	.why-card-a {
		width: calc(68.67% - 8px);
		min-height: 412px;
	}

	.why-card-b {
		width: calc(31.33% - 8px);
		min-height: 412px;
	}

	.why-card-c {
		width: calc(50% - 8px);
		min-height: 340px;
	}

	.why-card-d {
		width: calc(50% - 8px);
		min-height: 340px;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: var(--sp-10, 40px);
	}

	.why-card-d .why-text {
		width: 41.66%;
		flex-shrink: 0;
	}

	.why-card-d .why-visual {
		width: 58.33%;
		height: 100%;
	}

	.ucard-inner,
	.footer-wordmark {
		padding: 0 var(--sp-8);
	}

	.ucard-head h2,
	.block-head h2 {
		font-size: 48px;
	}

	.keywords-list p {
		font-size: 60px;
	}

	.infrastructure-heading h2 {
		font-size: 72px;
	}

	.ecosystem {
		padding-block: var(--sp-12);
	}

	.ecosystem-head-wrap {
		padding: 0 var(--sp-8);
	}

	.ecosystem-head {
		gap: var(--sp-5);
	}
}

@media (min-width:1280px) {
	.infrastructure-panel {
		min-height: 340svh;
	}

	.infrastructure-content {
		min-height: 340svh;
		padding: calc(4rem + var(--sp-9)) var(--sp-8) calc(var(--sp-9) * 1.6);
	}

	.infrastructure-pinned {
		top: clamp(calc(4rem + var(--sp-5)), 10svh, calc(4rem + var(--sp-8)));
	}

	.cards-stage {
		margin-top: clamp(var(--sp-8), 8svh, calc(var(--sp-8) * 1.8));
		min-height: 52svh;
	}

	.cards-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--sp-6);
	}

	.ecosystem-inner {
		gap: var(--sp-10);
	}

	.ecosystem-marquee {
		gap: var(--sp-6);
	}

	.ecosystem-marquee-group {
		gap: var(--sp-16);
		padding-right: var(--sp-16);
	}

	.ecosystem-marquee-item img {
		height: 80px;
	}

	.visa-stage {
		flex-direction: row;
		gap: var(--sp-5);
	}

	.visa-card {
		height: 529px;
	}

	.ucard-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--sp-6);
	}

	.ucard-head h2 {
		font-size: 48px;
	}

	.ecosystem-head h2 {
		font-size: 48px;
	}

	.footer-inner {
		flex-direction: row;
		justify-content: space-between;
		gap: var(--sp-16, 64px);
		padding: 96px var(--sp-8);
	}

	.footer-left {
		order: 1;
		min-height: 224px;
	}

	.footer-right {
		order: 2;
		margin-left: auto;
		width: 100%;
		column-gap: var(--sp-12, 48px);
	}

	.footer-wordmark {
		padding-bottom: var(--sp-8);
	}

	.ucard {
		padding-top: 80px;
	}
}

@media (max-width:1279px) {
	.infra-card {
		min-height: 18rem;
	}

	.infra-card:nth-child(n) {
		margin-top: 0;
	}

	.visa-title {
		font-size: 30px;
		line-height: 36px;
	}

	.visa-card-title,
	.visa-direct-statement {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width:767px) {
	.hero-panel {
		min-height: 100svh;
	}

	.keywords-panel {
		min-height: 100svh;
	}

	.infrastructure-panel {
		min-height: 390svh;
	}

	.infrastructure-content {
		min-height: 390svh;
	}

	.cards-stage {
		min-height: 82svh;
	}

	.opening-video {
		transform: scale(1.01);
	}

	.keywords-list p {
		font-size: 28px;
	}

	.scenario-grid {
		grid-template-columns: 1fr;
	}

	.visa-card-title,
	.visa-direct-statement {
		font-size: 20px;
		line-height: 28px;
	}

	.visa-card-header {
		top: var(--sp-5);
		left: var(--sp-5);
		gap: var(--sp-3);
	}

	.visa-card-logo {
		width: 74px;
		height: 24px;
	}

	.visa-divider {
		height: 24px;
	}

	.visa-copy,
	.visa-direct-statement {
		left: var(--sp-5);
		width: calc(100% - var(--sp-5) * 2);
	}

	.agent-shell.is-open {
		width: calc(100vw - 32px);
		height: 70vh;
	}
}

@media (prefers-reduced-motion:reduce) {
	* {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}

.dl-popover {
	position: fixed;
	top: 72px;
	right: var(--sp-6);
	z-index: 60;
	width: 339px;
	max-width: calc(100vw - 32px);
	max-height: calc(100vh - 96px);
	overflow: auto;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--r-2);
	padding: var(--sp-3);
	box-shadow: var(--shadow-2);
	animation: dl-zoom .16s ease-out;
}

@keyframes dl-zoom {
	from {
		opacity: 0;
		transform: scale(.95)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.dl-group {
	display: grid;
	gap: var(--sp-3);
}

.dl-card {
	min-width: 0;
	border-radius: var(--r-2);
	background: var(--surface);
	padding: var(--sp-3);
	padding-block: var(--sp-4);
}

.dl-card h3 {
	padding-inline: var(--sp-1);
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--fg);
}

.dl-cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-2);
	margin-top: 20px;
}

.dl-card-tight {
	padding: var(--sp-3);
}

.dl-card-tight .dl-cols {
	margin-top: var(--sp-3);
}

.dl-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-4);
	min-width: 0;
	border-radius: var(--r-2);
	padding: var(--sp-3);
	text-align: center;
	min-height: 192px;
}

.dl-col p {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--fg);
}

.dl-qr {
	position: relative;
	width: 96px;
	height: 96px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: var(--r-2);
	background: var(--bg);
}

.dl-qr img:first-child {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dl-qr-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: #fff;
	padding: 2px;
}

.dl-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-2);
	min-height: 44px;
	margin-top: var(--sp-2);
}

.dl-links a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--brand-strong);
	transition: color .15s ease;
}

.dl-links a:hover {
	color: var(--brand-muted);
}

.dl-col-tight {
	min-height: 64px;
	justify-content: space-between;
}

.dl-soon {
	margin-top: auto;
	min-height: 44px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: var(--fg-muted);
}

.dl-links-bottom {
	margin-top: auto;
}

@media (max-width:560px) {
	.dl-popover {
		right: var(--sp-4);
		width: calc(100vw - 32px);
		max-height: calc(100vh - 88px);
	}

	.dl-cols {
		grid-template-columns: 1fr;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}