body {
	position: relative;
	background-color: #ffffff;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

/* Gradients */

.gradient-top {
	position: absolute;
	top: -50vh;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #ffffff;
	background-image: -webkit-linear-gradient(top, #dedad6, #ffffff);
	background-image: linear-gradient(to bottom, #dedad6, #ffffff);
	z-index: -1;
	pointer-events: none;
}

.gradient-bottom {
	background-color: #ffffff;
	position: absolute; /* instead of absolute */
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200vh;
	z-index: -1;
	pointer-events: none;
	background-image: -webkit-linear-gradient(top, #ffffff, #dedad6);
	background-image: linear-gradient(to bottom, #ffffff, #dedad6);
}

/* Colors */

.clr-black {
	color: #212529;
}

.clr-gray {
	color: #808080;
}

.clr-white {
	color: #dedad6;
}

/* Fonts */

h1, h2, h3 {
	color: #212529;
	font-family: "Tilt Warp", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "XROT" 0, "YROT" 0;
}

h1 {
	font-size: 6rem;
	line-height: 5.075rem;
}

h2 {
	font-size: 3rem;
	line-height: 2.575rem;
}

p {
	font-size: 1.375rem;
	margin: 1.25rem 0 0 0;
}

ul, ol, li, label {
	font-size: 1.375rem;
}

/* Links */

a {
	color: #212529;
	text-decoration: none;
	border-bottom: 1px solid #212529;
}

a:hover {
	color: #808080;
	text-decoration: none;
	border-bottom: 1px solid #808080;
}

.social-link {
	color: #212529;
	text-decoration: none;
	border-bottom: none !important;
}

.social-link:hover {
	color: #808080;
	text-decoration: none;
	border-bottom: none !important;
}

/* Sections */

.hero {
	margin-top:  100px;
}

	.hero-lead {
	margin-bottom: 30px;
	font-size: 2rem;
	line-height: 2.575rem;
}

.section-h2 {
	margin: 200px 0 50px 0; 
}

.section-lead {
	margin: 0 0 50px 0;
}

.section-end {
	margin: 50px 0 0 0;
}

/* Pilot Section */

.square {
	width: 100%;
	aspect-ratio: 1 / 1;     /* makes it a perfect square */
	display: flex;
	align-items: center;
	justify-content: center;
}

.square img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;     /* keeps full image */
}


/* Footer */

footer {
	padding: 8rem 0;
}

.cookie-banner {
  background: rgba(205, 205, 205, 0.9);
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.cookie-banner button {
  text-decoration: none;
  font-size: 0.85rem;
}
