/* LAYOUT */

* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	background-color: white;
	/* background-color: #fcf2e2; */
	-webkit-font-smoothing: antialiased;
	color: #3f3c38;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 100%;
	line-height: 24px;
	text-rendering: optimizelegibility;
	height: 100%;
	font-weight: 500;
	padding: 32px;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.waitlist-card {
  background-color: #fafafa; /* Light background, gentle contrast */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  margin-top: 20px;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-form input,
.waitlist-form button {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.waitlist-form button {
  background-color: #222;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.waitlist-form button:hover {
  background-color: #444;
}

.waitlist-form {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}

.waitlist-form input,
.waitlist-form button {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.waitlist-form button {
  background-color: #222;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.waitlist-form button:hover {
  background-color: #444;
}

.container {
	margin: 0 auto;
	max-width: 768px;
}

.icon {
	margin: auto;
	/* border: 1px solid #3f3c38; */
	/* border-radius: 12px; */
	/* box-shadow: 10px 10px 5px 12px #3f3c38; */

}

.device {
	display: block;
	margin: 0 auto;
}

footer {
	font-size: 0.75em;
	line-height: 1.5em;
	color: #74c6d6;
	text-align: center;
}

section, footer, p, ul {
	margin-bottom: 16px;
}

/* TYPOGRAPHY */

h1 {
	font-size: 24px;
	font-weight: 800;
}

h2 {
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
}

li {
	list-style-type: "+ ";
	/* color: rgb(191,191,191); */
}

/* a {
	text-decoration: none;
	color: #F5A653;
} */

a.incognito {
	color: inherit;
	text-decoration: underline;
}

/* HELPER CLASSES */

.sp-lg {
	margin-bottom: 48px;
}

.sp-md {
	margin-bottom: 24px;
}

.sp-sm {
	margin-bottom: 16px;
}

/* MEDIA QUERIES */

@media only screen and (min-width: 768px) {
	
	body {
		padding: 64px;
	}
	
	.content {
		max-width: 384px;
		float: left;
	}
	
	.image {
		max-width: 384px;
		float: right;
	}
	
	footer {
		clear: both;
	}
	
	.icon {
		margin: 0 auto 24px 0;
	}

}