:root {
	--teal: #238e99;
	--teal-bright: #4bc0c8;
	--teal-deep: #0d555e;
	--navy: #082f35;
	--ink: #102a31;
	--cream: #f7f5ee;
	--mist: #e5f3f3;
	--coral: #f36f61;
	--amber: #f9a825;
	--blue: #2f82e5;
	--muted: #5e7479;
	--white: #fff;
	--border: rgba(8, 47, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; }

.marketing-header {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 50%;
	width: min(100% - 36px, 1180px);
	height: 88px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.marketing-brand { display: inline-flex; align-items: center; gap: 11px; color: white; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.34); border-radius: 13px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.brand-mark svg { width: 28px; fill: white; transform: rotate(-12deg); }
.brand-words { display: grid; gap: 1px; }
.brand-words strong { font-size: 19px; letter-spacing: -.03em; }
.brand-words small { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-login, .header-signup { min-height: 42px; padding: 0 18px; display: inline-flex; align-items: center; border-radius: 999px; color: white; text-decoration: none; font-size: 14px; font-weight: 800; transition: background .2s, transform .2s; }
.header-login { border: 1px solid rgba(255,255,255,.36); backdrop-filter: blur(10px); }
.header-signup { background: var(--coral); box-shadow: 0 8px 22px rgba(243,111,97,.25); }
.header-login:hover, .header-signup:hover { transform: translateY(-1px); }
.header-login:hover { background: rgba(255,255,255,.12); }
.header-signup:hover { background: #f77c70; }

.hero {
	position: relative;
	min-height: 790px;
	padding: 145px max(22px, calc((100vw - 1180px) / 2)) 90px;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
	gap: 62px;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 16%, rgba(75,192,200,.25), transparent 28%),
		linear-gradient(135deg, #082f35 0%, #0a3b43 48%, #0d555e 100%);
	color: white;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .15;
	background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-copy, .hero-product { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 9px; color: var(--teal-bright); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: currentColor; }
.eyebrow.centered { justify-content: center; }
.eyebrow.light { color: #a9e5e8; }
.hero h1 { max-width: 670px; margin: 0; font-size: clamp(53px, 6vw, 83px); line-height: .97; letter-spacing: -.065em; }
.hero h1 em { display: block; color: var(--teal-bright); font-family: Georgia, serif; font-weight: 400; }
.hero-lede { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.76); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { max-width: 610px; margin-top: 31px; }
.waitlist-form label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 850; }
.waitlist-fields { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(255,255,255,.1); box-shadow: 0 18px 45px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.waitlist-fields input { min-width: 0; height: 49px; padding: 0 13px; border: 0; outline: 0; background: transparent; color: white; font-size: 16px; }
.waitlist-fields input::placeholder { color: rgba(255,255,255,.5); }
.waitlist-fields input:focus { border-radius: 10px; box-shadow: inset 0 0 0 2px var(--teal-bright); }
.waitlist-fields button { height: 49px; padding: 0 20px; border: 0; border-radius: 11px; background: var(--coral); color: white; font-weight: 900; cursor: pointer; box-shadow: 0 8px 25px rgba(243,111,97,.27); }
.waitlist-fields button:hover { background: #ff7d6f; }
.waitlist-fields button span { margin-left: 5px; }
.form-note, .form-error { margin: 9px 4px 0; font-size: 12px; }
.form-note { color: rgba(255,255,255,.52); }
.form-error { color: #ffc1bb; font-weight: 800; }
.account-link { margin: 14px 3px 0; color: rgba(255,255,255,.65); font-size: 13px; }
.account-link a { color: white; font-weight: 850; text-underline-offset: 3px; }
.signup-success { min-height: 72px; display: flex; align-items: center; gap: 13px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(255,255,255,.11); backdrop-filter: blur(12px); }
.signup-success > span { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; background: var(--teal-bright); color: var(--navy); font-size: 20px; font-weight: 900; }
.signup-success div { display: grid; gap: 3px; }
.signup-success small { color: rgba(255,255,255,.65); }
.hero-proof { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hero-proof div { padding-left: 13px; border-left: 2px solid rgba(75,192,200,.4); display: grid; gap: 4px; }
.hero-proof strong { color: white; font-size: 19px; }
.hero-proof span { color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.35; }

.hero-product { min-height: 570px; display: grid; place-items: center; }
.product-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(75,192,200,.28), transparent 66%); filter: blur(4px); }
.phone-frame { position: relative; z-index: 2; width: min(340px, 78vw); height: 620px; padding: 10px; border: 1px solid rgba(255,255,255,.34); border-radius: 42px; background: #071e23; box-shadow: 0 42px 90px rgba(0,0,0,.48), inset 0 0 0 2px rgba(255,255,255,.08); transform: rotate(2.5deg); overflow: hidden; }
.phone-top { height: 45px; padding: 0 11px; display: flex; align-items: center; justify-content: space-between; color: white; font-size: 12px; }
.phone-top span { width: 57px; height: 17px; border-radius: 999px; background: #02090b; }
.phone-top i { width: 20px; height: 8px; border-top: 2px solid white; border-bottom: 2px solid white; opacity: .65; }
.mock-map { position: relative; height: 505px; overflow: hidden; border-radius: 27px 27px 15px 15px; background: linear-gradient(145deg, #99af96, #557767); }
.map-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(25deg, transparent 47%, #dbe5d2 48%, #dbe5d2 51%, transparent 52%), linear-gradient(115deg, transparent 47%, #dbe5d2 48%, #dbe5d2 50%, transparent 51%); background-size: 88px 88px; }
.water-shape { position: absolute; width: 190px; height: 510px; right: -110px; top: -20px; border-radius: 48%; background: #356d79; transform: rotate(13deg); box-shadow: inset 12px 0 rgba(255,255,255,.1); }
.airport-code { position: absolute; top: 211px; left: 129px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.runway { position: absolute; left: 128px; top: 165px; width: 6px; height: 100px; background: #344448; border: 1px dashed rgba(255,255,255,.6); transform: rotate(28deg); }
.runway-two { left: 167px; top: 188px; height: 75px; transform: rotate(-48deg); }
.user-pulse { position: absolute; left: 52%; bottom: 112px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: rgba(75,192,200,.25); box-shadow: 0 0 0 12px rgba(75,192,200,.12); }
.user-pulse span { width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; background: var(--teal-bright); }
.mock-plane { position: absolute; z-index: 3; width: 55px; height: 55px; display: grid; place-items: center; filter: drop-shadow(0 3px 4px rgba(0,0,0,.35)); }
.mock-plane img { position: relative; z-index: 2; width: 51px; height: 51px; object-fit: contain; }
.mock-plane b { position: absolute; z-index: 4; top: 43px; padding: 3px 5px; border-radius: 5px; background: rgba(7,30,35,.78); color: white; font-size: 8px; white-space: nowrap; }
.plane-glow { position: absolute; width: 44px; height: 44px; border-radius: 50%; filter: blur(6px); opacity: .92; }
.plane-glow.red { background: #e43f3f; }
.plane-glow.amber { background: #ffc23b; }
.plane-glow.blue { background: #398be9; }
.plane-aa { top: 62px; left: 53px; transform: rotate(38deg); }
.plane-aa b { transform: rotate(-38deg); }
.plane-wn { top: 135px; right: 41px; transform: rotate(-50deg); }
.plane-wn b { transform: rotate(50deg); }
.plane-dl { bottom: 157px; left: 40px; transform: rotate(105deg); }
.plane-dl b { transform: rotate(-105deg); }
.plane-ua { top: 252px; right: 54px; transform: rotate(15deg); }
.map-card { position: absolute; z-index: 5; left: 12px; right: 12px; bottom: 12px; padding: 13px; border: 1px solid rgba(255,255,255,.34); border-radius: 15px; background: rgba(248,251,250,.94); color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.22); backdrop-filter: blur(10px); }
.map-card-route { display: flex; gap: 7px; align-items: center; font-size: 22px; font-weight: 950; letter-spacing: -.04em; }
.map-card-route i { color: var(--teal); font-style: normal; }
.map-card p { margin: 3px 0 10px; color: var(--muted); font-size: 10px; }
.map-card > div:last-child { display: flex; align-items: center; gap: 11px; font-size: 10px; }
.map-card button { margin-left: auto; padding: 7px 12px; border: 0; border-radius: 8px; background: var(--teal); color: white; font-size: 10px; font-weight: 900; }
.phone-nav { height: 51px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; color: #729096; }
.phone-nav span { display: grid; place-items: center; gap: 1px; font-size: 17px; }
.phone-nav small { font-size: 8px; font-weight: 800; }
.phone-nav .active { color: var(--teal-bright); }
.floating-tag { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; background: rgba(8,47,53,.82); box-shadow: 0 16px 35px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.floating-tag i { width: 10px; height: 10px; border-radius: 50%; }
.floating-tag span { display: grid; color: rgba(255,255,255,.58); font-size: 9px; }
.floating-tag strong { color: white; font-size: 11px; }
.tag-spotted { left: -8px; top: 92px; }
.tag-spotted i { background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.tag-special { right: -5px; bottom: 99px; }
.tag-special i { background: var(--blue); box-shadow: 0 0 12px var(--blue); }

.feature-intro { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 105px 0 45px; text-align: center; }
.feature-intro h2, .story-copy h2, .final-cta h2 { margin: 0; font-size: clamp(35px, 5vw, 56px); line-height: 1.06; letter-spacing: -.055em; }
.feature-intro > p:last-child { margin: 20px auto 0; max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.feature-grid { width: min(1180px, calc(100% - 40px)); margin: 0 auto 115px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { position: relative; min-height: 355px; padding: 29px; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: white; box-shadow: 0 15px 50px rgba(8,47,53,.07); }
.feature-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -70px; bottom: -80px; border-radius: 50%; background: var(--mist); }
.feature-icon { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 15px; background: var(--mist); color: var(--teal-deep); }
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-number { position: absolute; right: 25px; top: 13px; color: rgba(8,47,53,.12); font-size: 45px; font-weight: 950; }
.feature-card h3 { margin: 57px 0 11px; font-size: 25px; letter-spacing: -.035em; }
.feature-card > p:last-child { margin: 0; color: var(--muted); line-height: 1.65; }
.feature-log .feature-icon { background: #fff0ed; color: #c64b40; }
.feature-discover .feature-icon { background: #edf3ff; color: #286fc4; }

.story-section { padding: 110px max(22px, calc((100vw - 1080px) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; background: var(--mist); }
.story-window { position: relative; aspect-ratio: 4/5; max-height: 520px; padding: 20px 20px 45px; border-radius: 150px 150px 12px 12px; background: #e8ddc9; box-shadow: 0 25px 60px rgba(8,47,53,.13), inset 0 0 0 8px rgba(255,255,255,.65); }
.window-sky { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 130px 130px 4px 4px; background: linear-gradient(#72c2d0, #d4edf0 70%, #8baf8d 71%); }
.window-sky::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -4%; height: 22%; border-radius: 50% 50% 0 0; background: #5a8265; }
.window-sky svg { position: absolute; z-index: 2; width: 58%; top: 28%; left: 23%; fill: white; filter: drop-shadow(0 9px 6px rgba(8,47,53,.2)); transform: rotate(-5deg); }
.cloud { position: absolute; width: 70px; height: 20px; border-radius: 20px; background: rgba(255,255,255,.5); filter: blur(1px); }
.cloud::before, .cloud::after { content: ""; position: absolute; border-radius: 50%; background: inherit; }
.cloud::before { width: 28px; height: 28px; left: 12px; top: -13px; }
.cloud::after { width: 38px; height: 38px; right: 7px; top: -20px; }
.cloud-one { top: 25%; left: 6%; }
.cloud-two { top: 16%; right: 2%; transform: scale(.65); }
.window-sill { position: absolute; left: -20px; right: -20px; bottom: 17px; height: 27px; border-radius: 6px; background: #f1e7d6; box-shadow: 0 9px 14px rgba(8,47,53,.15); }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.7; }
.story-copy > p:nth-last-child(2) { margin-top: 25px; }

.final-cta { width: min(1180px, calc(100% - 40px)); margin: 110px auto; padding: 55px 60px; display: flex; align-items: end; justify-content: space-between; gap: 35px; border-radius: 30px; color: white; background: linear-gradient(120deg, var(--navy), var(--teal-deep)); box-shadow: 0 28px 70px rgba(8,47,53,.22); }
.final-cta h2 { max-width: 740px; }
.final-cta > a { flex: 0 0 auto; min-height: 52px; padding: 0 21px; display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; background: var(--coral); color: white; text-decoration: none; font-weight: 900; }

footer { width: min(1180px, calc(100% - 40px)); min-height: 110px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }
.footer-brand { display: grid; text-decoration: none; }
.footer-brand strong { color: var(--ink); font-size: 16px; }
.footer-brand span { margin-top: 2px; }
footer > div { display: flex; gap: 16px; }
footer > div a { color: var(--teal-deep); font-weight: 850; }

@media (max-width: 900px) {
	.hero { min-height: 0; grid-template-columns: 1fr; padding-top: 130px; gap: 55px; }
	.hero-copy { max-width: 680px; margin: 0 auto; }
	.hero-product { min-height: 650px; }
	.feature-grid { grid-template-columns: 1fr; }
	.feature-card { min-height: 280px; }
	.feature-card h3 { margin-top: 38px; }
	.story-section { grid-template-columns: 1fr; gap: 55px; }
	.story-window { width: min(420px, 90%); margin: 0 auto; }
	.final-cta { align-items: start; flex-direction: column; }
}

@media (max-width: 560px) {
	.marketing-header { width: calc(100% - 28px); height: 76px; }
	.brand-words small { display: none; }
	.header-login, .header-signup { min-height: 39px; padding: 0 12px; font-size: 12px; }
	.hero { padding: 112px 18px 65px; }
	.hero h1 { font-size: clamp(47px, 15vw, 68px); }
	.hero-lede { font-size: 17px; }
	.waitlist-fields { grid-template-columns: 1fr; }
	.waitlist-fields button { width: 100%; }
	.hero-proof { gap: 9px; }
	.hero-proof div { padding-left: 9px; }
	.hero-product { min-height: 590px; margin-inline: -12px; }
	.phone-frame { height: 570px; width: 310px; }
	.mock-map { height: 455px; }
	.tag-spotted { left: 1px; }
	.tag-special { right: 1px; bottom: 70px; }
	.feature-intro { padding-top: 80px; }
	.feature-grid { width: calc(100% - 28px); margin-bottom: 80px; }
	.story-section { padding: 80px 20px; }
	.final-cta { width: calc(100% - 28px); margin: 75px auto; padding: 38px 25px; }
	.final-cta > a { width: 100%; justify-content: center; }
	footer { padding: 28px 0; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
