:root {
	color-scheme: dark;
	--bg: #070a11;
	--bg-soft: #0d1320;
	--panel: rgba(12, 18, 30, 0.72);
	--panel-strong: rgba(10, 15, 25, 0.92);
	--text: #f8fbff;
	--muted: rgba(248, 251, 255, 0.72);
	--soft: rgba(248, 251, 255, 0.56);
	--blue: #12aee8;
	--blue-deep: #064b73;
	--gold: #f3ad3f;
	--gold-soft: rgba(243, 173, 63, 0.18);
	--rose: #ef6f8f;
	--green: #69d3a8;
	--line: rgba(255, 255, 255, 0.14);
	--line-strong: rgba(255, 255, 255, 0.22);
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
	--shadow-blue: 0 18px 54px rgba(18, 174, 232, 0.22);
	--container: min(1160px, calc(100% - 48px));
	--nav-h: 76px;
	--radius: 8px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--reveal-y: 22px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-h) + 18px);
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	color: var(--text);
	background:
		linear-gradient(145deg, rgba(18, 174, 232, 0.12), transparent 34%),
		linear-gradient(225deg, rgba(243, 173, 63, 0.1), transparent 38%),
		linear-gradient(180deg, #05070d 0%, var(--bg) 46%, #0a0f19 100%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 72%);
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select {
	font: inherit;
	color: inherit;
}

button {
	border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
	outline: 2px solid rgba(18, 174, 232, 0.9);
	outline-offset: 3px;
	border-radius: var(--radius);
}

::selection {
	background: rgba(18, 174, 232, 0.36);
}

.container {
	width: var(--container);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.progress {
	position: fixed;
	inset: 0 0 auto;
	height: 2px;
	z-index: 120;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.06);
}

.progress span {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: left center;
	background: linear-gradient(90deg, var(--blue), var(--gold), var(--rose));
}

[data-reveal] {
	opacity: 0;
	transform: translateY(var(--reveal-y));
	transition: opacity 640ms var(--ease), transform 640ms var(--ease);
	will-change: opacity, transform;
}

[data-reveal].is-inview {
	opacity: 1;
	transform: none;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
	line-height: 1.45;
}

.eyebrow::before {
	content: "";
	width: 30px;
	height: 1px;
	background: linear-gradient(90deg, var(--blue), var(--gold));
}

.btn {
	min-height: 44px;
	border-radius: var(--radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid transparent;
	font-size: 0.91rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition:
		transform 220ms var(--ease),
		border-color 220ms var(--ease),
		background 220ms var(--ease),
		box-shadow 220ms var(--ease);
	-webkit-tap-highlight-color: transparent;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--primary {
	color: #06111a;
	background: linear-gradient(135deg, #37d7ff, var(--blue) 52%, #7ce8ff);
	border-color: rgba(255, 255, 255, 0.26);
	box-shadow: var(--shadow-blue);
}

.btn--ghost,
.btn--glass {
	color: var(--text);
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--line);
	backdrop-filter: blur(14px);
}

.btn--ghost:hover,
.btn--glass:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(18, 174, 232, 0.5);
	box-shadow: 0 16px 42px rgba(18, 174, 232, 0.12);
}

/* Navigation */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	border-bottom: 1px solid transparent;
	background: rgba(7, 10, 17, 0.38);
	backdrop-filter: blur(16px);
	transition: background 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-nav.is-solid {
	background: rgba(7, 10, 17, 0.86);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand__plate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 162px;
	height: 44px;
	padding: 7px 10px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.brand__logo,
.footer__brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav-links a,
.footer__links a,
.mobile-menu__links a {
	color: rgba(248, 251, 255, 0.76);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	border-bottom: 1px solid transparent;
	transition: color 200ms var(--ease), border-color 200ms var(--ease);
}

.nav-links a:hover,
.footer__links a:hover,
.mobile-menu__links a:hover {
	color: var(--text);
	border-color: var(--gold);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-toggle {
	width: 44px;
	height: 44px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--line);
	display: none;
	place-items: center;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.nav-toggle span + span {
	margin-top: 4px;
}

body[data-menu-open="true"] .nav-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

body[data-menu-open="true"] .nav-toggle span:nth-child(2) {
	opacity: 0;
}

body[data-menu-open="true"] .nav-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	inset: var(--nav-h) 0 auto;
	z-index: 90;
	padding: 18px 24px 24px;
	background: rgba(7, 10, 17, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(18px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-12px);
	transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms var(--ease);
}

.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.mobile-menu__links {
	display: grid;
	gap: 4px;
	margin-bottom: 16px;
}

.mobile-menu .btn {
	width: 100%;
}

/* Hero */
.hero {
	position: relative;
	min-height: 100svh;
	padding: calc(var(--nav-h) + 64px) 0 86px;
	display: grid;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	background: var(--bg);
}

.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	background:
		linear-gradient(90deg, rgba(7, 10, 17, 0.94) 0%, rgba(7, 10, 17, 0.72) 42%, rgba(7, 10, 17, 0.38) 100%),
		linear-gradient(180deg, rgba(7, 10, 17, 0.18) 0%, rgba(7, 10, 17, 0.84) 88%, var(--bg) 100%);
}

.hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.96) contrast(1.08) brightness(0.72);
	transform: scale(1.04);
	z-index: 0;
}

.mist {
	position: absolute;
	z-index: 2;
	width: 74vw;
	height: 34vh;
	min-width: 760px;
	filter: blur(34px);
	opacity: 0.5;
	background:
		linear-gradient(90deg, transparent, rgba(18, 174, 232, 0.22), rgba(255, 255, 255, 0.12), transparent),
		linear-gradient(180deg, transparent, rgba(243, 173, 63, 0.1), transparent);
	transform: skewX(-18deg);
	animation: smokeDrift 18s var(--ease) infinite alternate;
}

.mist--one {
	left: -16vw;
	top: 18%;
}

.mist--two {
	right: -28vw;
	top: 42%;
	animation-duration: 22s;
	opacity: 0.42;
}

.mist--three {
	left: 18vw;
	bottom: 2%;
	animation-duration: 26s;
	opacity: 0.36;
}

.particles {
	position: absolute;
	inset: 0;
	z-index: 3;
	opacity: 0.7;
	background-image:
		radial-gradient(circle at 12% 28%, rgba(243, 173, 63, 0.9) 0 1px, transparent 2px),
		radial-gradient(circle at 38% 18%, rgba(18, 174, 232, 0.75) 0 1px, transparent 2px),
		radial-gradient(circle at 64% 40%, rgba(255, 255, 255, 0.62) 0 1px, transparent 2px),
		radial-gradient(circle at 78% 24%, rgba(243, 173, 63, 0.7) 0 1px, transparent 2px),
		radial-gradient(circle at 88% 66%, rgba(18, 174, 232, 0.75) 0 1px, transparent 2px);
	animation: particleFloat 16s linear infinite alternate;
}

.genie-ribbon {
	position: absolute;
	z-index: 2;
	width: 54vw;
	min-width: 520px;
	height: 54vw;
	min-height: 520px;
	border-radius: 50%;
	border: 1px solid rgba(18, 174, 232, 0.18);
	filter: blur(0.4px);
	opacity: 0.56;
	transform-origin: center;
	animation: genieRibbon 24s linear infinite;
}

.genie-ribbon::before,
.genie-ribbon::after {
	content: "";
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	border: 1px solid transparent;
	background:
		linear-gradient(var(--bg), var(--bg)) padding-box,
		conic-gradient(from 90deg, transparent, rgba(18, 174, 232, 0.8), rgba(243, 173, 63, 0.58), transparent 58%) border-box;
	mask-image: linear-gradient(90deg, transparent, #000 18%, #000 74%, transparent);
}

.genie-ribbon::after {
	inset: 20%;
	opacity: 0.74;
	transform: rotate(28deg);
}

.genie-ribbon--one {
	right: -18vw;
	top: 6vh;
}

.genie-ribbon--two {
	left: -28vw;
	bottom: -24vw;
	animation-duration: 31s;
	animation-direction: reverse;
	opacity: 0.38;
}

.genie-trail {
	position: absolute;
	z-index: 3;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
		radial-gradient(circle at 72% 34%, rgba(243, 173, 63, 0.9) 0 2px, transparent 3px),
		radial-gradient(circle at 26% 68%, rgba(18, 174, 232, 0.9) 0 2px, transparent 3px);
	filter: drop-shadow(0 0 18px rgba(18, 174, 232, 0.34));
	opacity: 0.74;
	animation: genieTrail 14s var(--ease) infinite;
}

.genie-trail--one {
	left: 50%;
	top: 18%;
}

.genie-trail--two {
	right: 8%;
	bottom: 16%;
	animation-delay: -6s;
	animation-duration: 18s;
}

@keyframes smokeDrift {
	from {
		transform: translate3d(-3%, 0, 0) skewX(-18deg);
	}
	to {
		transform: translate3d(6%, -8%, 0) skewX(-12deg);
	}
}

@keyframes particleFloat {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(0, -18px, 0);
	}
}

@keyframes genieRibbon {
	from {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.08);
	}
	to {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes genieTrail {
	0% {
		transform: translate3d(-30px, 18px, 0) rotate(0deg) scale(0.84);
		opacity: 0.12;
	}
	18% {
		opacity: 0.78;
	}
	55% {
		transform: translate3d(70px, -64px, 0) rotate(160deg) scale(1.06);
	}
	100% {
		transform: translate3d(120px, -108px, 0) rotate(360deg) scale(0.72);
		opacity: 0;
	}
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 34px;
	align-items: end;
}

.hero__copy {
	max-width: 820px;
}

.hero__title {
	margin: 14px 0 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 6.25rem;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: 0;
	text-wrap: balance;
}

.hero__title span {
	color: transparent;
	background: linear-gradient(90deg, var(--gold), #fff5d8, var(--blue), var(--gold));
	background-size: 220% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	animation: textGlow 7s linear infinite;
}

@keyframes textGlow {
	from {
		background-position: 0% 50%;
	}
	to {
		background-position: 220% 50%;
	}
}

.hero__sub {
	margin: 18px 0 0;
	max-width: 680px;
	color: var(--muted);
	font-size: 1.16rem;
	line-height: 1.75;
}

.typing-line {
	min-height: 34px;
	margin: 18px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(248, 251, 255, 0.88);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.45;
}

.typing-line span {
	color: transparent;
	background: linear-gradient(90deg, #ffffff, var(--blue), #fff3c9, var(--gold));
	background-size: 180% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	animation: typingShimmer 4.6s linear infinite;
}

.typing-line i {
	width: 2px;
	height: 1.25em;
	border-radius: 999px;
	background: var(--gold);
	box-shadow: 0 0 18px rgba(243, 173, 63, 0.7);
	animation: caretBlink 850ms steps(2, end) infinite;
}

@keyframes typingShimmer {
	from {
		background-position: 0% 50%;
	}
	to {
		background-position: 180% 50%;
	}
}

@keyframes caretBlink {
	0%,
	45% {
		opacity: 1;
	}
	46%,
	100% {
		opacity: 0;
	}
}

.hero__actions {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-panel {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(12, 18, 30, 0.76), rgba(12, 18, 30, 0.5));
	backdrop-filter: blur(18px);
	padding: 22px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.hero-panel__glow {
	position: absolute;
	inset: auto -10% -30% 18%;
	height: 180px;
	background: linear-gradient(90deg, rgba(18, 174, 232, 0.28), rgba(243, 173, 63, 0.18), transparent);
	filter: blur(26px);
	opacity: 0.86;
	pointer-events: none;
}

.hero-panel__label {
	position: relative;
	margin: 0;
	color: var(--gold);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hero-panel h2 {
	position: relative;
	margin: 12px 0 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2rem;
	line-height: 1.05;
	letter-spacing: 0;
	font-weight: 700;
}

.hero-panel__stats {
	position: relative;
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.hero-panel__stats div {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	padding: 12px 10px;
}

.hero-panel__stats strong {
	display: block;
	color: var(--blue);
	font-size: 1.1rem;
}

.hero-panel__stats span {
	display: block;
	margin-top: 4px;
	color: var(--soft);
	font-size: 0.78rem;
	line-height: 1.4;
}

.scroll-cue {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 2;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(248, 251, 255, 0.76);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.scroll-cue span {
	width: 22px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	position: relative;
}

.scroll-cue span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 8px;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: var(--gold);
	transform: translateX(-50%);
	animation: scrollDot 1.4s var(--ease) infinite;
}

@keyframes scrollDot {
	0% {
		opacity: 0;
		transform: translate(-50%, -4px);
	}
	35% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, 14px);
	}
}

/* Sections */
.section {
	position: relative;
	padding: 96px 0;
}

.section-head {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
	gap: 28px;
	align-items: end;
	margin-bottom: 30px;
}

.section-title {
	margin: 10px 0 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 4rem;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 700;
	text-wrap: balance;
}

.section-copy {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.75;
	max-width: 66ch;
}

.section-copy--wide {
	max-width: 76ch;
}

.why {
	background:
		linear-gradient(180deg, var(--bg) 0%, rgba(13, 19, 32, 0.86) 100%),
		linear-gradient(120deg, rgba(18, 174, 232, 0.08), transparent 44%);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.feature-card,
.age-band,
.testimonial {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04));
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.feature-card {
	padding: 22px;
	min-height: 220px;
	transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.feature-card:hover,
.trip-card:hover,
.testimonial:hover {
	transform: translateY(-4px);
	border-color: rgba(18, 174, 232, 0.46);
	box-shadow: 0 28px 70px rgba(18, 174, 232, 0.12);
}

.feature-card__icon {
	width: 42px;
	height: 42px;
	border-radius: var(--radius);
	display: grid;
	place-items: center;
	background: rgba(18, 174, 232, 0.14);
	color: var(--blue);
	font-weight: 900;
}

.feature-card h3,
.age-band span,
.trip-card h3,
.login-card h3 {
	margin: 18px 0 0;
	font-size: 1.2rem;
	line-height: 1.22;
	letter-spacing: 0;
}

.feature-card p,
.age-band p,
.trip-card p,
.login-card p,
.testimonial blockquote {
	margin: 10px 0 0;
	color: var(--muted);
	line-height: 1.68;
}

/* USP sections */
.usp {
	background:
		linear-gradient(180deg, rgba(7, 10, 17, 0.96), rgba(8, 14, 24, 0.98)),
		linear-gradient(90deg, rgba(243, 173, 63, 0.11), transparent 52%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.usp__grid,
.age__grid,
.wish-quiz__grid,
.login__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.usp__visual {
	position: relative;
	min-height: 360px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background:
		linear-gradient(155deg, rgba(18, 174, 232, 0.16), transparent 42%),
		linear-gradient(30deg, rgba(243, 173, 63, 0.14), transparent 48%),
		rgba(255, 255, 255, 0.04);
	box-shadow: var(--shadow);
}

.usp__visual::before,
.usp__visual::after {
	content: "";
	position: absolute;
	left: -18%;
	right: -18%;
	height: 120px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), rgba(18, 174, 232, 0.22), transparent);
	filter: blur(24px);
	transform: skewX(-18deg);
	animation: smokeDrift 17s var(--ease) infinite alternate;
}

.usp__visual::before {
	top: 24%;
}

.usp__visual::after {
	bottom: 18%;
	animation-duration: 22s;
}

.lamp-arc {
	position: absolute;
	left: 50%;
	bottom: 42px;
	width: 230px;
	height: 122px;
	transform: translateX(-50%);
	border: 2px solid rgba(243, 173, 63, 0.58);
	border-top: 0;
	border-radius: 0 0 130px 130px;
	box-shadow: 0 0 36px rgba(243, 173, 63, 0.2);
}

.lamp-arc::before {
	content: "";
	position: absolute;
	right: -52px;
	top: -18px;
	width: 88px;
	height: 42px;
	border: 2px solid rgba(243, 173, 63, 0.58);
	border-left: 0;
	border-radius: 0 44px 44px 0;
	transform: rotate(-14deg);
}

.departure-orbit {
	position: absolute;
	inset: 0;
}

.departure-orbit span {
	position: absolute;
	width: 11px;
	height: 11px;
	border-radius: 999px;
	background: var(--blue);
	box-shadow: 0 0 26px rgba(18, 174, 232, 0.9);
	animation: floatPulse 4s var(--ease) infinite alternate;
}

.departure-orbit span:nth-child(1) {
	left: 24%;
	top: 30%;
}

.departure-orbit span:nth-child(2) {
	left: 58%;
	top: 18%;
	animation-delay: 500ms;
	background: var(--gold);
	box-shadow: 0 0 24px rgba(243, 173, 63, 0.8);
}

.departure-orbit span:nth-child(3) {
	right: 22%;
	bottom: 34%;
	animation-delay: 900ms;
}

@keyframes floatPulse {
	from {
		transform: translateY(0);
		opacity: 0.58;
	}
	to {
		transform: translateY(-18px);
		opacity: 1;
	}
}

.trust-row {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.trust-row span,
.trip-card__top span,
.coming-soon-badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.07);
	color: rgba(248, 251, 255, 0.82);
	padding: 7px 10px;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.age {
	background:
		linear-gradient(180deg, rgba(9, 14, 24, 0.98), rgba(7, 10, 17, 0.94)),
		linear-gradient(140deg, transparent, rgba(105, 211, 168, 0.08) 60%, transparent);
}

.age__grid {
	grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.76fr);
}

.age-bands {
	display: grid;
	gap: 12px;
}

.age-band {
	padding: 20px;
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 16px;
	align-items: center;
}

.age-band span {
	margin: 0;
	color: var(--blue);
	font-size: 1.28rem;
	font-weight: 900;
}

.age-band p {
	margin: 0;
}

/* Featured trips */
.featured {
	background:
		linear-gradient(180deg, rgba(7, 10, 17, 0.96), rgba(13, 19, 32, 0.98)),
		linear-gradient(90deg, transparent, rgba(18, 174, 232, 0.08) 56%, transparent);
}

.trip-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(220px, 0.55fr));
	gap: 16px;
	align-items: stretch;
}

.trip-card {
	position: relative;
	min-height: 460px;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.14);
	overflow: hidden;
	isolation: isolate;
	background: var(--panel);
	box-shadow: var(--shadow);
	transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.trip-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--trip-img);
	background-size: cover;
	background-position: center;
	filter: saturate(1.02) contrast(1.08) brightness(0.78);
	transform: scale(1.04);
	transition: transform 900ms var(--ease);
	z-index: -2;
}

.trip-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 10, 17, 0.1) 0%, rgba(7, 10, 17, 0.62) 50%, rgba(7, 10, 17, 0.94) 100%),
		linear-gradient(135deg, rgba(18, 174, 232, 0.2), transparent 52%);
	z-index: -1;
}

.trip-card:hover::before {
	transform: scale(1.1);
}

.trip-card--large {
	min-height: 520px;
}

.trip-card__content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px;
}

.trip-card__top {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.trip-card h3 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2.7rem;
	line-height: 0.98;
	letter-spacing: 0;
}

.trip-card:not(.trip-card--large) h3 {
	font-size: 2.15rem;
}

.trip-card__actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Make a Wish */
.wish-quiz {
	background:
		linear-gradient(180deg, rgba(9, 14, 24, 0.98), rgba(7, 10, 17, 0.96)),
		linear-gradient(120deg, rgba(243, 173, 63, 0.09), transparent 36%, rgba(18, 174, 232, 0.09));
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wish-quiz__grid {
	grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
}

.wish-quiz__note {
	margin-top: 18px;
	border: 1px solid rgba(243, 173, 63, 0.22);
	border-radius: var(--radius);
	background: rgba(243, 173, 63, 0.08);
	color: rgba(248, 251, 255, 0.76);
	padding: 14px;
	line-height: 1.65;
	font-size: 0.92rem;
}

.wish-form {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
		linear-gradient(135deg, rgba(18, 174, 232, 0.12), rgba(243, 173, 63, 0.1));
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
	padding: 24px;
}

.wish-form::before {
	content: "";
	position: absolute;
	inset: -18% -24% auto;
	height: 250px;
	pointer-events: none;
	opacity: 0.78;
	filter: blur(16px);
	background:
		radial-gradient(ellipse at 18% 70%, rgba(18, 174, 232, 0.3), transparent 54%),
		radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.18), transparent 46%),
		radial-gradient(ellipse at 82% 68%, rgba(243, 173, 63, 0.18), transparent 52%);
	animation: loginSmoke 11s var(--ease) infinite alternate;
}

.wish-form__status,
.wish-form__grid,
.wish-form__actions {
	position: relative;
	z-index: 1;
}

.wish-form__status {
	min-height: 46px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.07);
	padding: 12px;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.wish-form__status span {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--gold);
	box-shadow: 0 0 0 6px rgba(243, 173, 63, 0.12);
	flex: 0 0 auto;
}

.wish-form__status strong {
	font-size: inherit;
	font-weight: 800;
	line-height: inherit;
}

.wish-form__status.is-success {
	border-color: rgba(18, 174, 232, 0.42);
	color: #d9f8ff;
}

.wish-form__status.is-success span {
	background: var(--blue);
	box-shadow: 0 0 0 6px rgba(18, 174, 232, 0.12);
}

.wish-form__status.is-error {
	border-color: rgba(239, 111, 143, 0.42);
	color: #ffd6df;
}

.wish-form__status.is-error span {
	background: var(--rose);
	box-shadow: 0 0 0 6px rgba(239, 111, 143, 0.12);
}

.wish-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}

.wish-field {
	display: grid;
	gap: 8px;
}

.wish-field--full {
	grid-column: 1 / -1;
}

.wish-field span {
	color: rgba(248, 251, 255, 0.78);
	font-size: 0.84rem;
	font-weight: 800;
}

.wish-field input,
.wish-field select {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(7, 10, 17, 0.62);
	color: var(--text);
	padding: 13px 14px;
	transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.wish-field select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(248, 251, 255, 0.72) 50%),
		linear-gradient(135deg, rgba(248, 251, 255, 0.72) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 12px) 50%;
	background-size: 6px 6px;
	background-repeat: no-repeat;
}

.wish-field input:focus,
.wish-field select:focus {
	outline: none;
	border-color: rgba(18, 174, 232, 0.72);
	box-shadow: 0 0 0 4px rgba(18, 174, 232, 0.16), 0 0 34px rgba(18, 174, 232, 0.2);
	background-color: rgba(7, 10, 17, 0.78);
}

.wish-field small {
	color: var(--soft);
	line-height: 1.5;
}

.wish-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.wish-form[aria-disabled="true"] .wish-field input,
.wish-form[aria-disabled="true"] .wish-field select,
.wish-form[aria-disabled="true"] #wishSubmitBtn {
	opacity: 0.62;
}

.quiz-preview {
	position: relative;
	min-height: 390px;
	border-radius: var(--radius);
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(155deg, rgba(18, 174, 232, 0.16), rgba(243, 173, 63, 0.08)),
		rgba(255, 255, 255, 0.05);
	box-shadow: var(--shadow);
}

.quiz-preview::before {
	content: "";
	position: absolute;
	inset: -18% -10% auto;
	height: 190px;
	background: linear-gradient(90deg, transparent, rgba(18, 174, 232, 0.28), rgba(255, 255, 255, 0.16), transparent);
	filter: blur(28px);
	transform: skewX(-18deg);
	animation: smokeDrift 20s var(--ease) infinite alternate;
}

.quiz-preview__blur {
	position: relative;
	display: grid;
	gap: 12px;
	filter: blur(1.4px);
	opacity: 0.76;
}

.quiz-preview__row,
.quiz-preview__match {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	padding: 16px;
}

.quiz-preview__row span {
	display: block;
	color: var(--soft);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.quiz-preview__row strong {
	display: block;
	margin-top: 6px;
	font-size: 1rem;
}

.quiz-preview__match {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 14px;
	align-items: center;
}

.quiz-preview__match div {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, 0.16);
	border-top-color: var(--blue);
}

.quiz-preview__match p {
	margin: 0;
	color: var(--muted);
	font-weight: 800;
}

.quiz-preview__lock {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	width: 72px;
	height: 58px;
	transform: translate(-50%, -50%);
	border: 3px solid rgba(248, 251, 255, 0.92);
	border-radius: var(--radius);
	background: rgba(7, 10, 17, 0.58);
	box-shadow: 0 0 44px rgba(18, 174, 232, 0.3);
}

.quiz-preview__lock::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 44px;
	width: 42px;
	height: 34px;
	border: 3px solid rgba(248, 251, 255, 0.92);
	border-bottom: 0;
	border-radius: 24px 24px 0 0;
	transform: translateX(-50%);
}

.quiz-preview__lock::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 21px;
	width: 8px;
	height: 18px;
	border-radius: 999px;
	background: var(--gold);
	transform: translateX(-50%);
}

.coming-soon-badge {
	position: absolute;
	right: 18px;
	top: 18px;
	z-index: 2;
	color: #070a11;
	background: linear-gradient(135deg, var(--gold), #ffe4a7);
	border-color: rgba(255, 255, 255, 0.4);
}

/* Login */
.login-section {
	background:
		linear-gradient(180deg, rgba(7, 10, 17, 0.96), rgba(10, 15, 25, 0.98)),
		linear-gradient(120deg, rgba(18, 174, 232, 0.08), transparent 44%);
}

.login__grid {
	grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.58fr);
}

.login-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
	padding: 24px;
}

.login-card__halo {
	position: absolute;
	inset: -18% -22% auto 22%;
	height: 170px;
	background: linear-gradient(90deg, rgba(18, 174, 232, 0.34), rgba(243, 173, 63, 0.14), transparent);
	filter: blur(32px);
	pointer-events: none;
}

.login-card__smoke {
	position: absolute;
	inset: -10% -22% auto;
	height: 260px;
	pointer-events: none;
	opacity: 0.74;
	filter: blur(18px);
	background:
		radial-gradient(ellipse at 18% 70%, rgba(18, 174, 232, 0.24), transparent 54%),
		radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.18), transparent 46%),
		radial-gradient(ellipse at 82% 68%, rgba(243, 173, 63, 0.16), transparent 52%);
	animation: loginSmoke 11s var(--ease) infinite alternate;
}

.login-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: conic-gradient(from var(--auth-angle, 0deg), rgba(18, 174, 232, 0.72), rgba(243, 173, 63, 0.58), transparent, rgba(18, 174, 232, 0.72));
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
	animation: authBorder 9s linear infinite;
}

.login-card::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 22px;
	width: 74px;
	height: 38px;
	border: 2px solid rgba(243, 173, 63, 0.5);
	border-left: 0;
	border-radius: 0 42px 42px 0;
	transform: rotate(-14deg);
	opacity: 0.52;
	box-shadow: 0 0 28px rgba(243, 173, 63, 0.16);
	pointer-events: none;
}

@property --auth-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}

@keyframes authBorder {
	to {
		--auth-angle: 360deg;
	}
}

@keyframes loginSmoke {
	from {
		transform: translate3d(-6%, 0, 0) skewX(-12deg);
	}
	to {
		transform: translate3d(8%, -20px, 0) skewX(-4deg);
	}
}

.login-card h3,
.login-card p,
.login-card label,
.login-card button,
.login-card a,
.login-card__kicker,
.login-card__header,
.login-card__actions,
.home-login-form,
.home-signed-panel {
	position: relative;
	z-index: 1;
}

.login-card__header {
	display: grid;
	gap: 8px;
	margin-bottom: 18px;
}

.login-card__kicker {
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	border: 1px solid rgba(243, 173, 63, 0.28);
	border-radius: 999px;
	background: rgba(243, 173, 63, 0.1);
	color: #ffe0a3;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
	padding: 8px 10px;
	text-transform: uppercase;
}

.login-card h3 {
	font-size: 1.45rem;
	margin: 0;
	line-height: 1.15;
}

.login-card--portal {
	display: grid;
	gap: 16px;
	align-content: start;
}

.login-card--portal p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.login-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 4px;
}

.login-card__status {
	margin: 0;
	color: rgba(248, 251, 255, 0.72);
	font-size: 0.92rem;
	line-height: 1.6;
}

.login-card__status[data-state="success"] {
	color: #9ff0cf;
}

.login-card__status[data-state="error"] {
	color: #ffb1c4;
}

.form-field {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.form-field span,
.remember span {
	color: rgba(248, 251, 255, 0.78);
	font-size: 0.84rem;
	font-weight: 800;
}

.form-field input {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(7, 10, 17, 0.58);
	color: var(--text);
	padding: 13px 14px;
	transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.form-field input::placeholder {
	color: rgba(248, 251, 255, 0.4);
}

.form-field input:focus {
	outline: none;
	border-color: rgba(18, 174, 232, 0.72);
	box-shadow: 0 0 0 4px rgba(18, 174, 232, 0.13);
	background: rgba(7, 10, 17, 0.74);
}

.login-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 14px 0 18px;
}

.remember {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.remember input {
	width: 16px;
	height: 16px;
	accent-color: var(--blue);
}

.login-card__meta a,
.login-link {
	color: var(--gold);
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.35;
	cursor: pointer;
	text-align: right;
	transition: color 200ms var(--ease);
}

.login-card__meta a:hover,
.login-link:hover {
	color: #ffe0a3;
}

.login-card__button {
	width: 100%;
	margin-top: 10px;
}

.login-card__button[disabled] {
	opacity: 0.62;
	cursor: wait;
	transform: none;
}

.login-card__secondary {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	margin-top: 14px;
	color: rgba(248, 251, 255, 0.74);
	font-size: 0.86rem;
	font-weight: 800;
	transition: color 200ms var(--ease);
}

.login-card__secondary:hover {
	color: var(--text);
}

.home-signed-panel {
	display: grid;
	gap: 14px;
}

.home-signed-panel > span {
	width: max-content;
	max-width: 100%;
	border: 1px solid rgba(105, 211, 168, 0.26);
	border-radius: 999px;
	background: rgba(105, 211, 168, 0.12);
	color: #9ff0cf;
	font-size: 0.72rem;
	font-weight: 900;
	padding: 8px 10px;
	text-transform: uppercase;
}

.home-signed-panel p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.home-signed-panel__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.is-hidden {
	display: none !important;
}

/* Community */
.community {
	background:
		linear-gradient(180deg, rgba(10, 15, 25, 0.98), rgba(7, 10, 17, 0.98)),
		linear-gradient(90deg, rgba(243, 173, 63, 0.08), transparent 54%);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.testimonial {
	margin: 0;
	padding: 22px;
	transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.testimonial blockquote {
	margin: 0;
	font-size: 1.02rem;
}

.testimonial figcaption {
	margin-top: 16px;
	color: var(--gold);
	font-weight: 900;
}

/* Footer */
.footer {
	position: relative;
	padding: 64px 0;
	background:
		linear-gradient(180deg, rgba(7, 10, 17, 0.98), #05070d),
		linear-gradient(90deg, rgba(18, 174, 232, 0.08), transparent);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) auto;
	gap: 34px;
	align-items: start;
}

.footer__brand {
	display: inline-flex;
}

.footer__brand .brand__plate {
	width: 170px;
}

.footer p {
	max-width: 520px;
	margin: 16px 0 0;
	color: var(--muted);
	line-height: 1.7;
}

.footer__small {
	font-size: 0.82rem;
}

.footer__links {
	display: grid;
	gap: 8px;
	justify-items: end;
}

.toast {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 130;
	max-width: min(360px, calc(100% - 36px));
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(7, 10, 17, 0.92);
	color: var(--text);
	box-shadow: var(--shadow);
	backdrop-filter: blur(16px);
	padding: 13px 15px;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.toast.is-open {
	opacity: 1;
	transform: none;
}

@media (max-width: 1120px) {
	.nav-links {
		gap: 12px;
	}

	.nav-links a {
		font-size: 0.73rem;
	}
}

@media (max-width: 980px) {
	:root {
		--container: min(760px, calc(100% - 32px));
		--nav-h: 70px;
		--reveal-y: 16px;
	}

	.nav-links,
	.nav-actions__desktop {
		display: none;
	}

	.nav-toggle {
		display: grid;
	}

	.hero {
		min-height: auto;
		padding: calc(var(--nav-h) + 50px) 0 76px;
	}

	.hero__grid,
	.section-head,
	.usp__grid,
	.age__grid,
	.wish-quiz__grid,
	.login__grid,
	.footer__grid {
		grid-template-columns: 1fr;
	}

	.hero__title {
		font-size: 4.8rem;
	}

	.hero-panel {
		max-width: 560px;
	}

	.scroll-cue {
		display: none;
	}

	.why-grid,
	.trip-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.trip-card,
	.trip-card--large {
		min-height: 430px;
	}

	.usp__visual {
		order: 2;
		min-height: 300px;
	}

	.footer__links {
		justify-items: start;
	}
}

@media (max-width: 680px) {
	:root {
		--container: min(620px, calc(100% - 24px));
	}

	.brand__plate {
		width: 138px;
		height: 40px;
		padding: 7px 8px;
	}

	.hero {
		padding-top: calc(var(--nav-h) + 36px);
	}

	.hero__media::after {
		background:
			linear-gradient(180deg, rgba(7, 10, 17, 0.76) 0%, rgba(7, 10, 17, 0.88) 64%, var(--bg) 100%),
			linear-gradient(90deg, rgba(7, 10, 17, 0.9), rgba(7, 10, 17, 0.54));
	}

	.mist {
		min-width: 520px;
		height: 28vh;
	}

	.hero__title {
		font-size: 3.35rem;
		line-height: 0.96;
	}

	.hero__sub {
		font-size: 1rem;
		line-height: 1.65;
	}

	.hero__actions,
	.trip-card__actions,
	.trust-row {
		flex-direction: column;
	}

	.hero__actions .btn,
	.trip-card__actions .btn,
	.trust-row span {
		width: 100%;
	}

	.hero-panel {
		padding: 18px;
	}

	.hero-panel__stats {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 68px 0;
	}

	.section-title {
		font-size: 2.85rem;
	}

	.feature-card,
	.trip-card__content,
	.quiz-preview,
	.wish-form,
	.login-card,
	.testimonial {
		padding: 18px;
	}

	.age-band {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.trip-card,
	.trip-card--large {
		min-height: 380px;
	}

	.trip-card h3,
	.trip-card:not(.trip-card--large) h3 {
		font-size: 2.3rem;
	}

	.quiz-preview {
		min-height: 360px;
	}

	.wish-form__grid {
		grid-template-columns: 1fr;
	}

	.wish-form__actions .btn {
		width: 100%;
	}

	.login-card__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.login-link {
		text-align: left;
	}

	.login-card__actions,
	.home-signed-panel__actions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	:root {
		--container: min(100% - 18px, 380px);
		--nav-h: 66px;
	}

	.btn {
		width: 100%;
		padding-inline: 12px;
	}

	.nav-toggle {
		width: 40px;
		height: 40px;
	}

	.hero__title {
		font-size: 2.7rem;
	}

	.section-title {
		font-size: 2.35rem;
	}

	.section-copy {
		font-size: 0.95rem;
	}

	.trip-card,
	.trip-card--large {
		min-height: 350px;
	}

	.mobile-menu {
		padding-inline: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
