:root {
	--ink: #07131d;
	--ink-soft: #152833;
	--paper: #fffdf8;
	--cream: #f4f0e7;
	--white: #ffffff;
	--sage: #dceae4;
	--mint: #29e2bd;
	--mint-deep: #0d8f75;
	--coral: #ff7358;
	--muted: #61717d;
	--line: rgba(7, 19, 29, 0.14);
	--line-light: rgba(255, 255, 255, 0.16);
	--shadow: 0 24px 70px rgba(7, 19, 29, 0.12);
	--radius-sm: 14px;
	--radius-md: 24px;
	--radius-lg: 36px;
	--shell: 1240px;
	--font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

img,
svg,
canvas {
	max-width: 100%;
}

img {
	display: block;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

::selection {
	background: var(--mint);
	color: var(--ink);
}

.site-shell {
	width: min(var(--shell), calc(100% - 48px));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	transform: translateY(-160%);
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
	font-weight: 800;
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	color: #4d665e;
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow > span {
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--mint-deep);
}

.eyebrow--light {
	color: rgba(255, 255, 255, 0.75);
}

.eyebrow--light > span {
	background: var(--mint);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 13px 21px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.94rem;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.site-brand:focus-visible,
.site-footer a:focus-visible,
.faq summary:focus-visible {
	outline: 3px solid var(--mint);
	outline-offset: 4px;
}

.button--small {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 0.84rem;
}

.button--mint {
	background: var(--mint);
	box-shadow: 0 12px 30px rgba(41, 226, 189, 0.16);
	color: var(--ink);
}

.button--mint:hover {
	box-shadow: 0 16px 38px rgba(41, 226, 189, 0.26);
}

.button--glass {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	backdrop-filter: blur(12px);
}

.button--glass:hover {
	background: rgba(255, 255, 255, 0.14);
}

.button--ink {
	background: var(--ink);
	color: var(--white);
}

.button--outline {
	border-color: var(--line);
	background: transparent;
	color: var(--ink);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 850;
	text-decoration: none;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translate(2px, -2px);
}

.text-link--light {
	color: var(--white);
}

/* Header */
.site-header {
	position: relative;
	z-index: 80;
	min-height: 78px;
	background: var(--ink);
	color: var(--white);
}

.home .site-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(2, 10, 16, 0.72), transparent);
}

.site-header::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	content: "";
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--white);
	text-decoration: none;
}

.site-brand img {
	flex: 0 0 38px;
	border-radius: 11px;
}

.site-brand__name {
	font-size: 1.16rem;
	font-weight: 900;
	letter-spacing: -0.035em;
}

.site-brand__suffix {
	margin-left: -3px;
	padding-left: 9px;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	position: relative;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	font-weight: 750;
	text-decoration: none;
}

.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	background: var(--mint);
	content: "";
	transition: transform 160ms ease;
}

.site-nav__list a:hover {
	color: var(--white);
}

.site-nav__list a:hover::after {
	transform: scaleX(1);
}

.site-nav__toggle {
	display: none;
	align-items: center;
	gap: 10px;
	border: 0;
	background: transparent;
	color: var(--white);
	cursor: pointer;
}

.site-nav__toggle-label {
	font-size: 0.78rem;
	font-weight: 800;
}

.site-nav__toggle-lines {
	display: grid;
	gap: 5px;
	width: 23px;
}

.site-nav__toggle-lines i {
	display: block;
	height: 2px;
	background: currentcolor;
	transition: transform 160ms ease;
}

/* Hero */
.hero {
	position: relative;
	isolation: isolate;
	min-height: 790px;
	overflow: hidden;
	background: #07131d;
	color: var(--white);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__media::before,
.hero__media::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	pointer-events: none;
}

.hero__media::before {
	background: linear-gradient(90deg, rgba(3, 12, 18, 0.98) 0%, rgba(3, 12, 18, 0.9) 36%, rgba(3, 12, 18, 0.38) 66%, rgba(3, 12, 18, 0.18) 100%);
}

.hero__media::after {
	background: linear-gradient(to bottom, rgba(3, 12, 18, 0.28) 0%, transparent 40%, rgba(3, 12, 18, 0.72) 100%);
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 52%;
	opacity: 0.92;
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: center;
	min-height: 790px;
	padding-top: 112px;
	padding-bottom: 94px;
}

.hero__copy {
	max-width: 730px;
}

.hero h1 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(3.5rem, 7.15vw, 7.2rem);
	font-weight: 780;
	letter-spacing: -0.072em;
	line-height: 0.88;
	text-wrap: balance;
}

.hero__lede {
	max-width: 650px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.06rem, 1.55vw, 1.32rem);
	line-height: 1.55;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.77rem;
	font-weight: 700;
}

.hero__checks li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hero__checks li::before {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--mint);
	box-shadow: 0 0 0 4px rgba(41, 226, 189, 0.12);
	content: "";
}

.hero-pass {
	align-self: end;
	width: min(100%, 410px);
	margin: 0 0 16px auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 26px;
	background: rgba(248, 252, 250, 0.92);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
	color: var(--ink);
	backdrop-filter: blur(18px);
	transform: rotate(1.5deg);
}

.hero-pass__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 102px;
	gap: 16px;
	align-items: start;
	padding: 24px;
}

.hero-pass__top strong,
.hero-pass__top small {
	display: block;
}

.hero-pass__top strong {
	margin: 13px 0 7px;
	font-size: 1.35rem;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.hero-pass__top small {
	color: #687780;
	font-size: 0.71rem;
}

.hero-pass__top canvas {
	display: block;
	border-radius: 9px;
	background: var(--white);
}

.hero-pass__label,
.tag {
	display: inline-block;
	padding: 6px 9px;
	border-radius: 999px;
	background: #d9f7ef;
	color: #176c58;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.hero-pass__signal {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	border-block: 1px solid var(--line);
	color: #51656e;
	font-size: 0.68rem;
	font-weight: 800;
}

.hero-pass__signal i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #16b98c;
	box-shadow: 0 0 0 4px rgba(22, 185, 140, 0.12);
}

.hero-pass__facts {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 0 20px;
	padding: 16px 24px;
}

.hero-pass__facts span,
.hero-pass__facts strong {
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.7rem;
}

.hero-pass__facts span {
	color: #687780;
}

.hero-pass__facts strong {
	text-align: right;
}

.hero-pass > a {
	display: flex;
	justify-content: space-between;
	padding: 15px 24px 18px;
	color: var(--ink);
	font-size: 0.75rem;
	font-weight: 900;
	text-decoration: none;
}

.hero__edge {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 44px;
	background: var(--paper);
	clip-path: polygon(0 72%, 72% 0, 100% 34%, 100% 100%, 0 100%);
}

/* Proof */
.proof-strip {
	background: var(--paper);
}

.proof-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-block: 32px 48px;
}

.proof-strip__grid > div {
	display: grid;
	gap: 3px;
	padding: 3px 28px;
	border-right: 1px solid var(--line);
}

.proof-strip__grid > div:first-child {
	padding-left: 0;
}

.proof-strip__grid > div:last-child {
	border-right: 0;
}

.proof-strip strong {
	font-size: 1.02rem;
	letter-spacing: -0.02em;
}

.proof-strip span {
	color: var(--muted);
	font-size: 0.78rem;
}

/* Sections */
.section {
	padding: clamp(88px, 10vw, 150px) 0;
}

.section--cream {
	background: var(--cream);
}

.section--white {
	background: var(--white);
}

.section--ink {
	background: var(--ink);
	color: var(--white);
}

.section--sage {
	background: var(--sage);
}

.section-heading {
	margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
	gap: clamp(40px, 8vw, 120px);
	align-items: end;
}

.section-heading h2,
.regulation h2,
.final-cta h2,
.content-page h1,
.passport-hero h1,
.not-found h1 {
	margin: 0;
	font-size: clamp(2.7rem, 5.6vw, 5.8rem);
	font-weight: 760;
	letter-spacing: -0.065em;
	line-height: 0.95;
	text-wrap: balance;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p {
	margin: 0;
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.72;
}

.section-heading--on-dark {
	max-width: 850px;
}

.section-heading--on-dark h2 {
	color: var(--white);
}

.section-heading--on-dark > p:not(.eyebrow) {
	max-width: 650px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.65);
}

.section-heading--compact {
	max-width: 760px;
}

/* Steps */
.steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.step-card {
	position: relative;
	min-height: 380px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--paper);
}

.step-card--dark {
	background: var(--ink);
	color: var(--white);
}

.step-card--mint {
	background: var(--mint);
}

.step-card__number {
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.step-card--dark .step-card__number {
	color: rgba(255, 255, 255, 0.46);
}

.step-card__icon {
	display: grid;
	place-items: center;
	width: 105px;
	height: 105px;
	margin: 42px 0 36px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.07);
	font-size: 2.8rem;
	font-weight: 300;
}

.step-card:not(.step-card--dark) .step-card__icon {
	border-color: var(--line);
	background: rgba(7, 19, 29, 0.04);
}

.step-card__icon--qr {
	display: grid;
	grid-template-columns: repeat(2, 25px);
	grid-template-rows: repeat(2, 25px);
	gap: 8px;
}

.step-card__icon--qr i {
	border: 6px solid var(--ink);
}

.step-card__icon--qr i:last-child {
	grid-column: 2;
	width: 13px;
	height: 13px;
	align-self: end;
	justify-self: end;
	border-width: 0;
	background: var(--coral);
}

.step-card h3 {
	margin: 0 0 12px;
	font-size: 1.45rem;
	letter-spacing: -0.035em;
}

.step-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.91rem;
	line-height: 1.65;
}

.step-card--dark p {
	color: rgba(255, 255, 255, 0.62);
}

.step-card--mint p {
	color: #174a3e;
}

/* Demo adaptations */
.section--ink .tqrc-eyebrow {
	color: var(--mint);
}

.section--ink .tqrc-button--ghost {
	border-color: rgba(255, 255, 255, 0.25);
}

/* Bento */
.bento-wrap {
	display: grid;
	grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
	gap: clamp(45px, 7vw, 100px);
	align-items: start;
}

.bento-wrap .section-heading {
	position: sticky;
	top: 40px;
	margin-bottom: 0;
}

.bento {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.bento__card {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--paper);
}

.bento__wide {
	grid-column: 1 / -1;
}

.bento__card--visual {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
	gap: 30px;
	align-items: end;
	min-height: 430px;
	background: var(--ink);
	color: var(--white);
}

.bento__card--coral {
	background: var(--coral);
}

.bento__card .tag {
	align-self: flex-start;
}

.bento__card--visual .tag {
	background: rgba(41, 226, 189, 0.16);
	color: var(--mint);
}

.bento__card--coral .tag {
	background: rgba(255, 255, 255, 0.35);
	color: #602217;
}

.bento h3 {
	margin: auto 0 12px;
	font-size: clamp(1.65rem, 3vw, 2.45rem);
	letter-spacing: -0.05em;
	line-height: 1.04;
}

.bento__card--visual h3 {
	margin: 30px 0 15px;
}

.bento p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

.bento__card--visual p {
	color: rgba(255, 255, 255, 0.64);
}

.bento__card--visual .text-link {
	margin-top: 24px;
	color: var(--mint);
}

.code-window {
	align-self: stretch;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: #020a0f;
	color: var(--coral);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.8rem;
	line-height: 1.8;
}

.code-window code {
	display: block;
	padding-left: 17px;
	color: #bfe9de;
	white-space: nowrap;
}

.big-glyph {
	display: grid;
	place-items: center;
	width: 118px;
	height: 118px;
	margin: 50px 0 20px;
	border: 1px solid rgba(7, 19, 29, 0.24);
	border-radius: 50%;
	font-size: 4.5rem;
	font-weight: 200;
	line-height: 1;
}

.line-list {
	display: grid;
	gap: 9px;
	margin: 62px 0 25px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
}

.line-list i {
	display: block;
	height: 8px;
	border-radius: 99px;
	background: #dde6e2;
}

.line-list i:nth-child(1) {
	width: 45%;
	background: var(--mint);
}

.line-list i:nth-child(2) {
	width: 82%;
}

.line-list i:nth-child(3) {
	width: 68%;
}

.line-list i:nth-child(4) {
	width: 91%;
}

/* Regulation */
.regulation {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(50px, 10vw, 150px);
	align-items: center;
}

.regulation__index {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid rgba(7, 19, 29, 0.2);
	border-radius: 50%;
	color: rgba(7, 19, 29, 0.82);
	font-size: clamp(4rem, 9vw, 8rem);
	font-weight: 250;
	letter-spacing: -0.08em;
}

.regulation__content > p:not(.eyebrow):not(.regulation__note) {
	max-width: 730px;
	margin: 28px 0 0;
	color: #496158;
	font-size: 1.04rem;
	line-height: 1.72;
}

.regulation__links {
	display: grid;
	gap: 0;
	margin-top: 38px;
	border-top: 1px solid rgba(7, 19, 29, 0.17);
}

.regulation__links a {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 0;
	border-bottom: 1px solid rgba(7, 19, 29, 0.17);
	font-size: 0.88rem;
	font-weight: 850;
	text-decoration: none;
}

.regulation__note {
	margin: 28px 0 0;
	padding: 15px 17px;
	border-left: 3px solid var(--coral);
	background: rgba(255, 255, 255, 0.42);
	color: #4d5b56;
	font-size: 0.8rem;
}

/* FAQ */
.faq-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
	gap: clamp(50px, 9vw, 135px);
}

.faq-layout .section-heading {
	margin: 0;
}

.faq {
	border-top: 1px solid var(--line);
}

.faq details {
	border-bottom: 1px solid var(--line);
}

.faq summary {
	position: relative;
	padding: 24px 48px 24px 0;
	font-size: 1.04rem;
	font-weight: 820;
	list-style: none;
	cursor: pointer;
}

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

.faq summary::before,
.faq summary::after {
	position: absolute;
	top: 50%;
	right: 4px;
	width: 17px;
	height: 2px;
	background: var(--ink);
	content: "";
	transition: transform 160ms ease;
}

.faq summary::after {
	transform: rotate(90deg);
}

.faq details[open] summary::after {
	transform: rotate(0);
}

.faq details p {
	max-width: 720px;
	margin: -4px 0 24px;
	padding-right: 40px;
	color: var(--muted);
	font-size: 0.93rem;
	line-height: 1.7;
}

/* Final CTA */
.final-cta {
	padding: clamp(72px, 9vw, 125px) 0;
	background: var(--ink);
	color: var(--white);
}

.final-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: end;
}

.final-cta h2 {
	max-width: 820px;
}

.final-cta__actions {
	display: grid;
	gap: 20px;
	justify-items: start;
}

/* Footer */
.site-footer {
	padding: 65px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: #020a0f;
	color: var(--white);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: start;
}

.site-footer__summary {
	max-width: 390px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.82rem;
}

.site-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(140px, 1fr));
	gap: 15px 30px;
}

.site-footer__links a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	font-weight: 750;
	text-decoration: none;
}

.site-footer__links a:hover {
	color: var(--mint);
}

.site-footer__legal {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 55px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.43);
	font-size: 0.68rem;
}

.site-footer__legal p {
	margin: 0;
}

/* Standard pages */
.content-page {
	min-height: 72vh;
	background: var(--paper);
}

.content-page__shell {
	max-width: 940px;
	padding-top: clamp(72px, 9vw, 125px);
	padding-bottom: clamp(90px, 12vw, 165px);
}

.content-page__header {
	margin-bottom: 65px;
	padding-bottom: 55px;
	border-bottom: 1px solid var(--line);
}

.prose {
	max-width: 760px;
	font-size: 1rem;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose h2 {
	margin: 52px 0 16px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	letter-spacing: -0.04em;
}

.prose p,
.prose li {
	color: #465965;
	line-height: 1.75;
}

.prose a {
	color: #096d59;
	font-weight: 700;
}

.prose ul {
	padding-left: 22px;
}

/* Passport */
.passport-view {
	min-height: 80vh;
	background: var(--cream);
}

.passport-view__shell {
	padding-top: 28px;
	padding-bottom: clamp(90px, 11vw, 150px);
}

.breadcrumb {
	display: flex;
	gap: 10px;
	margin-bottom: 52px;
	color: #65736d;
	font-size: 0.72rem;
	font-weight: 750;
}

.breadcrumb a {
	color: var(--ink);
}

.passport-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(40px, 9vw, 130px);
	align-items: center;
	padding-bottom: 52px;
	border-bottom: 1px solid var(--line);
}

.passport-hero__copy > p:not(.eyebrow) {
	max-width: 700px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1.08rem;
}

.passport-hero__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 25px;
}

.passport-hero__tags span {
	padding: 7px 10px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	font-size: 0.7rem;
	font-weight: 800;
}

.passport-hero__qr {
	padding: 15px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--white);
	box-shadow: var(--shadow);
}

.passport-hero__qr canvas {
	display: block;
}

.passport-hero__qr small {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.64rem;
	font-weight: 750;
	text-align: center;
}

.passport-notice {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	margin: 28px 0;
	padding: 15px 17px;
	border-left: 4px solid var(--coral);
	border-radius: 0 12px 12px 0;
	background: #fff0ec;
	color: #683128;
}

.passport-notice span {
	padding: 5px 8px;
	border-radius: 99px;
	background: var(--coral);
	color: var(--ink);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.passport-notice p {
	margin: 0;
	font-size: 0.82rem;
}

.passport-status {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 28px 0 16px;
}

.passport-status > div {
	display: grid;
	gap: 5px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.55);
}

.passport-status small {
	color: var(--muted);
	font-size: 0.64rem;
	font-weight: 850;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.passport-status strong {
	font-size: 0.84rem;
}

.passport-status i {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 50%;
	background: #12a77e;
}

.passport-sections {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.passport-section {
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--white);
}

.passport-section h2 {
	margin: 0 0 15px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.passport-section p,
.passport-section ul {
	margin: 0;
	color: #4c5c65;
	font-size: 0.9rem;
	line-height: 1.68;
}

.passport-section ul {
	padding-left: 19px;
}

.passport-document {
	margin: 24px 0 0;
}

.passport-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.passport-disclaimer {
	max-width: 760px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 0.73rem;
}

/* 404 */
.not-found {
	min-height: 72vh;
	background: radial-gradient(circle at 80% 20%, rgba(41, 226, 189, 0.16), transparent 30%), var(--ink);
	color: var(--white);
}

.not-found__inner {
	padding-top: clamp(100px, 13vw, 180px);
	padding-bottom: clamp(120px, 16vw, 220px);
}

.not-found h1 {
	max-width: 800px;
}

.not-found__inner > p:not(.eyebrow) {
	max-width: 590px;
	margin: 26px 0 32px;
	color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1100px) {
	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(290px, 0.5fr);
		gap: 45px;
	}

	.hero h1 {
		font-size: clamp(3.5rem, 7.7vw, 5.8rem);
	}

	.site-nav__list {
		gap: 17px;
	}

	.bento-wrap,
	.faq-layout {
		grid-template-columns: 1fr;
	}

	.bento-wrap .section-heading {
		position: static;
	}
}

@media (max-width: 900px) {
	.site-nav__toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: 76px;
		right: 16px;
		left: 16px;
		display: none;
		max-height: calc(100vh - 92px);
		padding: 20px;
		overflow: auto;
		border: 1px solid rgba(255, 255, 255, 0.13);
		border-radius: 18px;
		background: #0c1a24;
		box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 0;
	}

	.site-nav__list a {
		display: block;
		padding: 14px 4px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 0.95rem;
	}

	.site-nav__list a::after {
		display: none;
	}

	.site-nav__cta {
		width: 100%;
		margin-top: 18px;
	}

	.hero {
		min-height: 860px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		align-content: center;
		min-height: 860px;
		padding-top: 125px;
		padding-bottom: 100px;
	}

	.hero__copy {
		max-width: 680px;
	}

	.hero-pass {
		display: none;
	}

	.hero__media::before {
		background: linear-gradient(90deg, rgba(3, 12, 18, 0.97) 0%, rgba(3, 12, 18, 0.8) 63%, rgba(3, 12, 18, 0.4) 100%);
	}

	.section-heading--split,
	.regulation {
		grid-template-columns: 1fr;
	}

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

	.step-card {
		min-height: auto;
	}

	.step-card__icon {
		margin: 38px 0 30px;
	}

	.regulation__index {
		width: min(340px, 80vw);
	}

	.final-cta__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}
}

@media (max-width: 680px) {
	.site-shell {
		width: min(100% - 32px, var(--shell));
	}

	.site-header,
	.site-header__inner {
		min-height: 70px;
	}

	.site-brand__suffix {
		display: none;
	}

	.site-brand img {
		width: 34px;
		height: 34px;
	}

	.site-nav {
		top: 68px;
	}

	.hero {
		min-height: 780px;
	}

	.hero__inner {
		min-height: 780px;
		padding-top: 110px;
		padding-bottom: 88px;
	}

	.hero__media img {
		object-position: 62% center;
	}

	.hero__media::before {
		background: linear-gradient(90deg, rgba(3, 12, 18, 0.95), rgba(3, 12, 18, 0.66)), linear-gradient(to bottom, rgba(3, 12, 18, 0.2), rgba(3, 12, 18, 0.72));
	}

	.hero h1 {
		font-size: clamp(3.05rem, 15vw, 4.6rem);
		line-height: 0.91;
	}

	.hero__lede {
		font-size: 1rem;
	}

	.hero__actions {
		display: grid;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__checks {
		display: grid;
		gap: 9px;
	}

	.hero__edge {
		height: 28px;
	}

	.proof-strip__grid {
		grid-template-columns: 1fr;
		padding-top: 24px;
	}

	.proof-strip__grid > div,
	.proof-strip__grid > div:first-child {
		padding: 15px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.proof-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.section {
		padding: 80px 0;
	}

	.section-heading h2,
	.regulation h2,
	.final-cta h2,
	.content-page h1,
	.passport-hero h1,
	.not-found h1 {
		font-size: clamp(2.5rem, 12vw, 3.7rem);
	}

	.section-heading--split {
		gap: 28px;
	}

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

	.bento__wide {
		grid-column: auto;
	}

	.bento__card,
	.bento__card--visual {
		grid-template-columns: 1fr;
		min-height: 370px;
		padding: 24px;
	}

	.code-window {
		min-height: 210px;
	}

	.regulation__index {
		width: min(245px, 72vw);
	}

	.faq summary {
		font-size: 0.95rem;
	}

	.faq details p {
		padding-right: 0;
	}

	.final-cta__actions {
		width: 100%;
	}

	.final-cta__actions .button {
		width: 100%;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.site-footer__links {
		grid-template-columns: 1fr;
	}

	.site-footer__legal {
		flex-direction: column;
	}

	.content-page__header {
		margin-bottom: 45px;
		padding-bottom: 40px;
	}

	.passport-view__shell {
		padding-top: 22px;
	}

	.breadcrumb {
		margin-bottom: 38px;
	}

	.passport-hero {
		grid-template-columns: 1fr;
	}

	.passport-hero__qr {
		width: max-content;
	}

	.passport-status,
	.passport-sections {
		grid-template-columns: 1fr;
	}

	.passport-actions {
		display: grid;
	}

	.passport-actions .button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
