html {
	scroll-padding-top: 3rem;
}
html, body {
	background: #ffffff;
	font-family: sans-serif;
	color: black;
	margin: 0;
}
body {
	padding: 0 0.7rem;
}
a {
	color: #b33;
}
a:hover, a:focus {
	color: #e33;
}
a.btn {
	background: #f2b289;
	border-radius: 0.4em;
	padding: 0.4em 0.6em;
	color: black;
	text-decoration: none;
}
a.btn:hover {
	background-color: #f2a26d;
}
.btn-detail {
	display: block;
	font-size: 80%;
	margin-top: 0.3em;
}
header {
	position: sticky;
	background: inherit;
	top: 0;
	z-index: 100;
	padding: 0.75rem 0;
	height: 1.5rem;
	line-height: 1.5rem;
	display: flex;
	justify-content:  space-between;
	border-bottom: solid #daa 1px;
}
header > * {
	align-self: center;
}
.header-title > h1 {
	margin: 0 0.75rem 0 0;
	font-family: sans-serif;
	font-size: 120%;
	font-weight: bold;
	color: #b33;
	white-space: nowrap;
}
.header-title > h1 > a {
	text-decoration: none;
	color: inherit;
}
.header-title > h1 > a:hover {
	text-decoration: underline;
	color: inherit;
}
.header-nav > a {
	white-space: nowrap;
	margin-left: 0.3rem;
}
.header-signup {
	background: #f2b289;
	border-radius: 0.4em;
	padding: 0.4em 0.6em;
	color: black;
	text-decoration: none;
}
.header-signup:hover {
	background-color: #f2a26d;
	color: black;
}
main, header {
	max-width: 1000px;
	margin: 0 auto;
}
#pitch {
	max-width: 700px;
	margin: 0 auto;
}
#pitch p {
	text-align: justify;
	line-height: 1.3em;
}
#hero {
	text-align: center;
}
#hero h2 {
	font-size: 300%;
	font-weight: bold;
	margin: 0.75em 0 0.5em 0;
}
#hero p {
	font-size: 120%;
	line-height: 1.4em;
}
/*
#benefits {
	column-count: 3;
}
#benefits h2 {
	display: none;
}
#benefits > div {
	display: inline-block;
	text-align: center;
}
*/
.calltoaction {
	text-align: center;
	font-size: 120%;
}
#about {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
#about p {
	text-align: justify;
	line-height: 1.3em;
}
#about img {
	clip-path: circle(50%);
	width: 150px;
}
#footer {
	text-align: center;
	margin: 4em 0 2em 0;
	color: #444;
	font-size: 80%;
}
main > section {
	margin-bottom: 3em;
}
img.screenshot {
	display: block;
	margin: 0 auto;
	box-shadow: 0 0 20px #333;
	border-radius: 6px;
}
.policy {
	line-height: 1.4em;
}
.tour {
	display: none;
}
.tour:target {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.tour-close {
	position: relative;
	display: block;
}
.tour-close::before {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	content: "";
	cursor: default;
}
.tour-close::after {
	right: -1rem;
	top: -1rem;
	width: 2rem;
	height: 2rem;
	position: absolute;
	display: flex;
	z-index: 1;
	align-items: center;
	justify-content: center;
	background-color: black;
	border-radius: 50%;
	color: white;
	content: "\00D7";
	cursor: pointer;
}
.tour-content {
	position: relative;
	background: white;
	padding: 1rem;
	border-radius: 6px;
	box-shadow: 5px 5px 20px #333;
	width: calc(744px + 2rem);
	max-width: 100vw;
	max-height: 100vh;
	overflow: auto;
	box-sizing: border-box;
	text-align: center;
}
.tour-content > p:first-child {
	margin-top: 0;
}
.tour-nav {
	margin-bottom: 0;
}
a.tour-cta {
	background: #ffccaa;
	border-radius: 0.4em;
	padding: 0.4em 0.6em;
	color: black;
	text-decoration: none;
}
a.tour-cta:hover {
	background-color: #f2b289;
}
.tour-screenshot {
	border-radius: 6px;
}
.newsletter {
	background: #f4d6ca;
	text-align: center;
	padding: 0.8rem;
	border-radius: 6px;
}
.newsletter > h2 {
	margin-top: 0;
}
.newsletter > form > input {
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: center;
	width: min(100%, 30rem);
	font-size: 120%;
	border-radius: 0.5rem;
	padding: 0.3rem;
	color: black;
}
.newsletter > form > input[type=email] {
	background: white;
	border: solid #999 1px;
}
.newsletter > form > input[type=submit] {
	background: #f2b289;
	border-color: transparent;
	margin-top: 0.5rem;
}
.newsletter > form > input[type=submit]:hover {
	background: #f2a26d;
}
.newsletter > form > input:focus {
	border: solid #f2924d 2px;
	outline: none;
}
