/* ---------- Tokens ---------- */
:root {
	--bg: #fbfcfe;
	--ink: #16202e;
	--muted: #5b6573;
	--soft: #3a4452;
	--blue: #4a90e2;
	--blue-deep: #2f6dba;
	--blue-logo: #3a7fd0;
	--green: #00a000;
	--green-deep: #008f00;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: "Geist",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	line-height: 1.5;
}

.font-display {
	font-family: "Plus Jakarta Sans",sans-serif;
}

::selection {
	background: rgba(74,144,226,.20)
}

a {
	text-decoration: none;
	color: inherit
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none
}

img {
	display: block;
	max-width: 100%
}

svg {
	display: block
}

.wrap {
	max-width: 1152px;
	margin: 0 auto
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-weight: 700;
	border-radius: 999px;
	transition: transform .2s ease,background .2s ease;
	white-space: nowrap
}

.btn-green {
	background: var(--green);
	color: #fff;
	box-shadow: 0 12px 28px -8px rgba(0,160,0,.55)
}

	.btn-green:hover {
		background: var(--green-deep);
		transform: translateY(-2px)
	}

.btn-white {
	background: #fff;
	color: var(--ink);
	border: 1px solid rgba(22,32,46,.10);
	box-shadow: 0 10px 40px -12px rgba(22,32,46,.18),0 2px 8px -2px rgba(22,32,46,.06)
}

	.btn-white:hover {
		background: #f3f6fa
	}

/* ---------- Shadows / surfaces ---------- */
.shadow-soft {
	box-shadow: 0 10px 40px -12px rgba(22,32,46,.18),0 2px 8px -2px rgba(22,32,46,.06)
}

.shadow-soft-lg {
	box-shadow: 0 24px 60px -18px rgba(22,32,46,.22),0 4px 12px -4px rgba(22,32,46,.08)
}

.bg-dots {
	background-image: radial-gradient(circle at 1px 1px,rgba(22,32,46,.06) 1px,transparent 0);
	background-size: 26px 26px
}

/* ---------- Reveal on scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease,transform .6s ease
}

	.reveal.in {
		opacity: 1;
		transform: none
	}

/* ---------- Underline accent ---------- */
.mark {
	position: relative;
	display: inline-block;
	white-space: nowrap
}

	.mark svg {
		position: absolute;
		left: 0;
		bottom: -.34em;
		width: 100%;
		height: .46em;
		overflow: visible
	}

	.mark path {
		stroke-dasharray: 1;
		stroke-dashoffset: 1;
	}

	.mark.draw path {
		animation: draw .85s ease-in-out forwards
	}

@keyframes draw {
	to {
		stroke-dashoffset: 0
	}
}

/* ---------- Float blobs ---------- */
@keyframes float-1 {
	0%,100% {
		transform: translate(0,0) scale(1)
	}

	50% {
		transform: translate(4%,5%) scale(1.08)
	}
}

@keyframes float-2 {
	0%,100% {
		transform: translate(0,0) scale(1)
	}

	50% {
		transform: translate(-5%,-4%) scale(1.06)
	}
}

.float-1 {
	animation: float-1 18s ease-in-out infinite
}

.float-2 {
	animation: float-2 22s ease-in-out infinite
}

/* ---------- Nav ---------- */
.nav {
	position: fixed;
	top: 14px;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 0 8px
}

.nav-inner {
	max-width: 1024px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: rgba(255,255,255,.8);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(22,32,46,.06);
	border-radius: 999px;
	padding: 8px 8px 8px 20px;
	box-shadow: 0 10px 40px -12px rgba(22,32,46,.18),0 2px 8px -2px rgba(22,32,46,.06)
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px
}

	.logo img {
		width: 30px;
		height: 30px
	}

.logo-text {
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -.02em
}

	.logo-text .b {
		color: var(--blue-logo)
	}

	.logo-text .g {
		color: var(--green)
	}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: .875rem;
	font-weight: 500;
	color: var(--muted)
}

	.nav-links a:hover {
		color: var(--ink)
	}

.nav-cta {
	font-size: .875rem;
	padding: 10px 16px 10px 20px;
	box-shadow: 0 8px 20px -6px rgba(0,160,0,.5)
}

@media(max-width:860px) {
	.nav-links {
		display: none
	}
}

/* ---------- Layout helpers ---------- */
section {
	position: relative
}

.pad {
	padding-left: 12px;
	padding-right: 12px
}

@media(min-width:768px) {
	.pad {
		padding-left: 40px;
		padding-right: 40px
	}
}

/* ---------- Hero ---------- */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 112px;
	padding-bottom: 48px;
	overflow: hidden
}

.hero-blobs {
	position: absolute;
	inset: 0;
	pointer-events: none
}

	.hero-blobs .b1 {
		position: absolute;
		top: -10%;
		right: -5%;
		width: 600px;
		height: 600px;
		background: rgba(74,144,226,.13);
		border-radius: 50%;
		filter: blur(120px)
	}

	.hero-blobs .b2 {
		position: absolute;
		bottom: -15%;
		left: -8%;
		width: 520px;
		height: 520px;
		background: rgba(0,160,0,.10);
		border-radius: 50%;
		filter: blur(120px)
	}

	.hero-blobs .b3 {
		position: absolute;
		top: 20%;
		left: 35%;
		width: 360px;
		height: 360px;
		background: rgba(255,179,126,.10);
		border-radius: 50%;
		filter: blur(110px)
	}

.hero-dots {
	position: absolute;
	inset: 0;
	opacity: .7;
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%,black,transparent);
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%,black,transparent)
}

.hero-grid {
	position: relative;
	width: 100%;
	max-width: 1152px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 40px;
	align-items: center
}

@media(max-width:1023px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 48px
	}
}

.kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px
}

	.kicker .bar {
		height: 20px;
		width: 3px;
		border-radius: 999px;
		background: linear-gradient(to bottom,var(--blue),var(--green))
	}

	.kicker span {
		font-size: .875rem;
		font-weight: 600;
		color: var(--muted)
	}

.h1 {
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.06;
	font-size: 2.4rem;
	margin-bottom: 24px
}

@media(min-width:640px) {
	.h1 {
		font-size: 3rem
	}
}

@media(min-width:1280px) {
	.h1 {
		font-size: 3.75rem
	}
}

.lead {
	font-size: 1.125rem;
	color: var(--muted);
	max-width: 32rem;
	line-height: 1.7;
	margin-bottom: 16px
}

	.lead.strong {
		color: var(--ink);
		font-weight: 600;
		max-width: 28rem;
		margin-bottom: 36px
	}

@media(max-width:640px) {
	.lead {
		font-size: 1rem
	}
}

.hero-cta {
	display: flex;
	gap: 6px;
	margin-bottom: 28px;
	flex-wrap: wrap
}

	.hero-cta .btn {
		padding: 14px 20px;
		font-size: .875rem
	}

/* ---------- Trust chips ---------- */
.chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px
}

.chip {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid rgba(22,32,46,.06);
	border-radius: 999px;
	padding: 6px 14px 6px 6px;
	box-shadow: 0 3px 12px -4px rgba(22,32,46,.14)
}

	.chip .ic {
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: linear-gradient(135deg,rgba(74,144,226,.15),rgba(0,160,0,.15));
		display: flex;
		align-items: center;
		justify-content: center
	}

		.chip .ic svg {
			width: 14px;
			height: 14px;
			color: var(--green)
		}

	.chip span {
		font-size: .75rem;
		font-weight: 600;
		color: var(--soft);
		white-space: nowrap
	}

/* ---------- Device switcher ---------- */
.dev {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	width: 100%
}

.dev-tabs {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #fff;
	border-radius: 999px;
	padding: 4px;
	margin-bottom: 8px;
	border: 1px solid rgba(22,32,46,.06);
	box-shadow: 0 10px 40px -12px rgba(22,32,46,.18)
}

.dev-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: .875rem;
	font-weight: 600;
	color: var(--muted);
	transition: all .3s
}

	.dev-tab svg {
		width: 16px;
		height: 16px
	}

	.dev-tab.on {
		background: var(--ink);
		color: #fff
	}

.dev-stage {
	position: relative;
	height: 360px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}

@media(max-width:640px) {
	.dev-stage {
		height: 300px
	}
}

.dev-stage .glow {
	position: absolute;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	filter: blur(80px);
	background: linear-gradient(135deg,rgba(74,144,226,.2),rgba(74,144,226,.1),rgba(0,160,0,.15))
}

.dev-img-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-in;
	background: none
}

	.dev-img-btn img {
		object-fit: contain;
		max-height: 360px;
		width: auto;
		height: auto;
		filter: drop-shadow(0 24px 40px rgba(22,32,46,.22));
		transition: opacity .45s ease,transform .45s ease
	}

	.dev-img-btn:hover img {
		transform: scale(1.02)
	}

.dev-cap {
	color: var(--muted);
	font-size: .875rem;
	text-align: center;
	margin-top: 8px;
}

	.dev-cap b {
		color: var(--ink);
		font-weight: 600
	}

/* ---------- Section heads ---------- */
.eyebrow {
	color: var(--green);
	font-size: .875rem;
	font-weight: 700;
	margin-bottom: 12px
}

.h2 {
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.1;
	font-size: 2rem
}

@media(min-width:768px) {
	.h2 {
		font-size: 3rem
	}
}

.sec-sub {
	color: var(--muted);
	font-size: 1rem;
	max-width: 32rem;
	margin: 20px auto 0
}

/* ---------- Feature flipper ---------- */
.feat {
	background: #eef4fb;
	padding-top: 96px;
	padding-bottom: 96px;
	overflow: hidden
}

	.feat .blobA {
		position: absolute;
		top: 25%;
		right: -4%;
		width: 460px;
		height: 460px;
		background: rgba(0,160,0,.07);
		filter: blur(120px);
		border-radius: 50%;
		pointer-events: none
	}

	.feat .blobB {
		position: absolute;
		bottom: 0;
		left: 8%;
		width: 400px;
		height: 400px;
		background: rgba(74,144,226,.08);
		filter: blur(120px);
		border-radius: 50%;
		pointer-events: none
	}

.flip-stage {
	position: relative;
	height: 450px;
	width: 100%;
	perspective: 1800px
}

@media(max-width:640px) {
	.flip-stage {
		height: 400px
	}
}

.flip-card {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -115px;
	width: 230px;
	transform-style: preserve-3d;
	transition: transform .55s cubic-bezier(.2,.8,.2,1),opacity .55s ease;
	will-change: transform,opacity;
	touch-action: pan-y
}

@media(max-width:640px) {
	.flip-card {
		margin-left: -100px;
		width: 200px
	}
}

.flip-card .glow {
	position: absolute;
	inset: -28px;
	background: linear-gradient(135deg,rgba(74,144,226,.25),rgba(0,160,0,.15));
	filter: blur(40px);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: opacity .4s
}

.flip-card.center .glow {
	opacity: 1
}

.flip-card img {
	width: 100%;
	filter: drop-shadow(0 20px 36px rgba(22,32,46,.22));
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-user-drag: none
}

.flip-card.center {
	cursor: zoom-in
}

	.flip-card.center.grabbing {
		cursor: grabbing
	}

.flip-card.side {
	cursor: pointer
}

.flip-cap {
	text-align: center;
	margin-top: 32px;
	min-height: 92px
}

	.flip-cap .row {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 10px
	}

	.flip-cap .ic {
		width: 36px;
		height: 36px;
		border-radius: 12px;
		background: linear-gradient(135deg,var(--blue),var(--blue-deep));
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 10px 40px -12px rgba(22,32,46,.18)
	}

		.flip-cap .ic svg {
			width: 18px;
			height: 18px;
			color: #fff
		}

	.flip-cap h3 {
		font-weight: 700;
		font-size: 1rem;
		color: var(--ink)
	}

	.flip-cap p {
		color: var(--muted);
		font-size: .875rem;
		max-width: 28rem;
		margin: 0 auto;
		line-height: 1.6
	}

	.flip-cap .fade {
		transition: opacity .3s ease,transform .3s ease
	}

.flip-ctrl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 24px
}

.flip-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid rgba(22,32,46,.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	transition: all .2s;
	box-shadow: 0 10px 40px -12px rgba(22,32,46,.18)
}

	.flip-arrow:hover {
		color: var(--ink)
	}

	.flip-arrow svg {
		width: 20px;
		height: 20px
	}

.dots {
	display: flex;
	align-items: center;
	gap: 6px
}

.dot {
	height: 6px;
	width: 6px;
	border-radius: 999px;
	background: rgba(22,32,46,.15);
	transition: all .3s
}

	.dot:hover {
		background: rgba(22,32,46,.3)
	}

	.dot.on {
		width: 28px;
		background: linear-gradient(to right,var(--blue),var(--green))
	}

/* ---------- Pricing ---------- */
.price-sec {
	padding-top: 96px;
	padding-bottom: 96px;
	overflow: hidden
}

	.price-sec .blob {
		position: absolute;
		top: 33%;
		left: 50%;
		transform: translateX(-50%);
		width: 600px;
		height: 400px;
		background: rgba(74,144,226,.07);
		filter: blur(120px);
		border-radius: 50%;
		pointer-events: none
	}

.toggle {
	display: flex;
	justify-content: center;
	margin-bottom: 36px;
	margin-top: 16px;
}

.toggle-inner {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #eef2f7;
	border-radius: 999px;
	padding: 4px
}

.toggle button {
	padding: 10px 24px;
	border-radius: 999px;
	font-size: .875rem;
	font-weight: 600;
	color: var(--muted);
	transition: all .2s;
	display: flex;
	align-items: center;
	gap: 8px
}

	.toggle button.on {
		background: #fff;
		color: var(--ink);
		box-shadow: 0 1px 3px rgba(0,0,0,.1)
	}

.save-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 5px;
	background: rgba(0,160,0,.15);
	color: var(--green)
}

.toggle button.on .save-badge {
	background: var(--green);
	color: #fff
}

.price-wrap {
	position: relative;
	max-width: 56rem;
	margin: 0 auto
}

.price-glow {
	position: absolute;
	inset: -16px;
	background: linear-gradient(135deg,rgba(74,144,226,.15),transparent,rgba(0,160,0,.15));
	filter: blur(40px);
	border-radius: 42px;
	z-index: -1
}

.price-ring {
	border-radius: 32px;
	padding: 1.5px;
	background: linear-gradient(135deg,rgba(74,144,226,.5),rgba(22,32,46,.06),rgba(0,160,0,.5));
	box-shadow: 0 24px 60px -18px rgba(22,32,46,.22),0 4px 12px -4px rgba(22,32,46,.08)
}

.price-grid {
	display: grid;
	grid-template-columns: 1.12fr 1fr;
	border-radius: 30px;
	overflow: hidden;
	background: #fff
}

@media(max-width:767px) {
	.price-grid {
		grid-template-columns: 1fr
	}
}

.price-left {
	padding: 40px
}

@media(max-width:640px) {
	.price-left {
		padding: 32px
	}
}

.price-left h3 {
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 6px
}

.price-left p {
	color: var(--muted);
	font-size: .875rem;
	margin-bottom: 28px;
	line-height: 1.6
}

.price-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 16px
}

@media(max-width:640px) {
	.price-list {
		grid-template-columns: 1fr
	}
}

.price-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none
}

.price-list .ic {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg,rgba(74,144,226,.12),rgba(0,160,0,.1));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

	.price-list .ic svg {
		width: 14px;
		height: 14px;
		color: var(--blue-logo)
	}

.price-list span {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--soft);
	line-height: 1.2
}

.price-right {
	position: relative;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(135deg,var(--blue),#3a86d6,#0fa148)
}

	.price-right .d1 {
		position: absolute;
		inset: 0;
		opacity: .15;
		pointer-events: none
	}

	.price-right .g1 {
		position: absolute;
		top: -25%;
		right: -20%;
		width: 224px;
		height: 224px;
		background: rgba(255,255,255,.15);
		filter: blur(48px);
		border-radius: 50%
	}

	.price-right .g2 {
		position: absolute;
		bottom: -30%;
		left: -20%;
		width: 224px;
		height: 224px;
		background: rgba(0,160,0,.3);
		filter: blur(48px);
		border-radius: 50%
	}

	.price-right .inner {
		position: relative;
		z-index: 1
	}

.free-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.2);
	font-size: .75rem;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 24px;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px)
}

	.free-badge svg {
		width: 12px;
		height: 12px
	}

.price-amt {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 6px;
	margin-bottom: 4px
}

	.price-amt .num {
		font-weight: 800;
		font-size: 3.5rem;
		line-height: 1
	}

	.price-amt .per {
		color: rgba(255,255,255,.75);
		font-size: 1rem;
		margin-bottom: 4px
	}

.price-day {
	color: rgba(255,255,255,.85);
	font-size: .875rem;
	margin-bottom: 28px
}

.price-right .btn {
	width: 100%;
	background: #fff;
	color: var(--ink);
	padding: 16px 24px;
	font-size: .875rem;
	box-shadow: 0 14px 30px -10px rgba(0,0,0,.4)
}

	.price-right .btn:hover {
		background: #f3f6fa
	}

.price-right .note {
	color: rgba(255,255,255,.7);
	font-size: .75rem;
	margin-top: 16px
}

/* ---------- CTA ---------- */
.cta-sec {
	padding-bottom: 96px
}

.cta-card {
	position: relative;
	border-radius: 40px;
	padding: 56px;
	overflow: hidden;
	background: linear-gradient(135deg,#eaf3fd,#fff,#eaf7ec);
	border: 1px solid rgba(22,32,46,.06);
	box-shadow: 0 24px 60px -18px rgba(22,32,46,.22),0 4px 12px -4px rgba(22,32,46,.08)
}

@media(max-width:640px) {
	.cta-card {
		padding: 40px 24px
	}
}

.cta-card .g1 {
	position: absolute;
	top: -25%;
	right: -6%;
	width: 320px;
	height: 320px;
	background: rgba(74,144,226,.12);
	filter: blur(48px);
	border-radius: 50%;
	pointer-events: none
}

.cta-card .g2 {
	position: absolute;
	bottom: -30%;
	left: -6%;
	width: 320px;
	height: 320px;
	background: rgba(0,160,0,.1);
	filter: blur(48px);
	border-radius: 50%;
	pointer-events: none
}

.cta-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center
}

@media(max-width:767px) {
	.cta-grid {
		grid-template-columns: 1fr;
		gap: 32px
	}
}

.cta-ill {
	position: relative
}

	.cta-ill img {
		width: 100%;
		max-width: 24rem;
		margin: 0 auto
	}

@media(max-width:767px) {
	.cta-copy {
		text-align: center
	}

	.cta-ill {
		order: 2
	}
}

.cta-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0,160,0,.12);
	color: var(--green);
	font-size: .75rem;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 20px
}

	.cta-tag svg {
		width: 12px;
		height: 12px
	}

.cta-copy h2 {
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.1;
	font-size: 1.875rem;
	margin-bottom: 20px
}

@media(min-width:768px) {
	.cta-copy h2 {
		font-size: 2.75rem
	}
}

.cta-copy p {
	color: var(--muted);
	font-size: 1.0625rem;
	margin-bottom: 32px;
	line-height: 1.7;
	max-width: 28rem
}

@media(max-width:767px) {
	.cta-copy p {
		margin-left: auto;
		margin-right: auto
	}
}

.cta-copy .btn {
	padding: 16px 36px;
	font-size: 1rem
}

/* ---------- Footer ---------- */
.footer {
	padding: 40px 24px;
	border-top: 1px solid rgba(22,32,46,.08);
	background: #f5f8fb
}

@media(min-width:768px) {
	.footer {
		padding-left: 40px;
		padding-right: 40px
	}
}

.footer-inner {
	max-width: 1152px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap
}

.footer .logo img {
	width: 26px;
	height: 26px
}

.footer-copy {
	color: #8a93a0;
	font-size: .75rem
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: .75rem;
	font-weight: 500;
	color: var(--muted)
}

	.footer-links a:hover {
		color: var(--ink)
	}

@media(max-width:640px) {
	.footer-inner {
		flex-direction: column;
		text-align: center
	}

	.footer-copy {
		order: 3
	}
}

/* ---------- Lightbox ---------- */
.lb {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: rgba(11,20,38,.85);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	cursor: zoom-out
}

	.lb.open {
		display: flex
	}

	.lb img {
		max-height: 86vh;
		max-width: 92vw;
		width: auto;
		height: auto;
		object-fit: contain;
		filter: drop-shadow(0 25px 50px rgba(0,0,0,.5));
		cursor: default
	}

.lb-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0,0,0,.3)
}

.lb img {
	position: relative;
	z-index: 1
}

.lb-close svg {
	width: 20px;
	height: 20px
}

@media(max-width:640px) {
	.lb {
		padding: 20px
	}
}
