@charset "utf-8";
/* CSS Document */

/*---------------------- Global Styles */


* {
	margin:0px;
	padding:0px;
	font-family: Helvetica, Arial, sans-serif;
	text-decoration: none;
	outline: none;
	font-size: 1em;
}

*:after, *:before {
}

html {
	scroll-behavior: smooth;
}

body {
  font-family: "Gabarito", sans-serif;
	background-color: #000000;
  background-image: url(../images/pres/main-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; /* pushes image down by 100px */
  background-attachment: fixed; /* This makes it stay in place as you scroll */
}


h1 {
  font-family: "Gabarito", sans-serif;
  font-size: 60px;
  color: #ffffff;
  text-align: left;
  font-weight: 800;
	margin-bottom: 24px;
	text-transform: uppercase;
	line-height: 50px;
}

.headline {
	width: 50%;
}

p.sub-headline {
  font-family: "Gabarito", sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-align: left;
  font-weight: 100;
	margin-bottom: 50px;
	width: 50%;
}

h2 {
  font-family: "Gabarito", sans-serif;
  font-size: 60px;
  color: #ffffff;
	text-align: center;
  font-weight: 800;
	text-transform: uppercase;
	padding-bottom: 12px;
}

h2.padding {
	padding-bottom: 50px;
}

.dark {
	color: #05204A;
	text-align: center;
}

h3 {
  font-family: "Gabarito", sans-serif;
  font-size: 36px;
  color: #ffffff;
  text-align: left;
  font-weight: 800;
	text-transform: uppercase;
	padding-bottom: 12px;
}

h3.center {
	text-align: center;
}


h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 24px;
  color: #ffffff;
  text-align: left;
  font-weight: 100;
  text-transform: uppercase;
}

h5 {
}

h6 {
}

em {
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}


/*---------------------------------------------------------------- FONTS */

// <weight>: Use a value from 400 to 900
// <uniquifier>: Use a unique and descriptive class name

.gabarito-<uniquifier> {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/*---------------------------------------------------------------- END FONTS */

p {
  font-family: "Gabarito", sans-serif;
	color: #ffffff;
	font-size: 16px;
	padding-bottom: 24px;
}

a:link {
  font-family: "Gabarito", sans-serif;
	color: #ffffff;
}

a:hover {
	color: #00CDE8;
}

a:visited {
	color: #ffffff;
}

a:active {
	color: #ffffff;
}

ol {
}

ul {
	list-style: none;
}

li {
}

label {
}

img {
	width: 100%;
}

div.sub {
	max-width:  1528px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 5%;
}

.left {
	float: left;
}

.right {
	float: right;
}


/*---------------------------------------------------------------- HEADER */


.header {
	width: 100%;
	margin-bottom: 100px;
	background-color: #000000;
}

.navigation {
		display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem;
}

#alana-logo {
	display: block;
	width: 166px;
	height: 60px;
	background-image: url(../images/pres/AlanaDev-Logo.svg);
	background-position: left top;
	background-repeat: no-repeat;
	text-indent: -9999px;
  flex-shrink: 0; /* Keeps the logo size stable */
  float: left;
}

ul.nav {
  display: flex;
  flex-direction: row; /* Explicitly set to row to ensure horizontal layout */
  margin: 0;
  padding: 0;
}

ul.nav li {
  display: inline-flex; /* Ensure list items are inline and respect flex properties */
	margin: 0 1.5rem; /* Adjust spacing between links */
	text-transform: uppercase;
}

ul.nav li a:hover {
	color: #00CDE8;
}

.button {
	padding: 12px 45px;
	background-color: #00CDE8;
	font-size: 16px;
	color: #000000;
	border-radius: 100px;
}

.button:hover {
	cursor: pointer;
	background-color: #FF6663;
	color: #000000;
}

.button.blue {
	color: #000000;
}


/*---------------------------------------------------------------- SPLASH */


.splash {
	padding: 200px 0;
	background-image: url(../images/pres/Header-Image.jpg);
	background-position: center right;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 600px;
	background-color: #030919;
}

/*---------------------------------------------------------------- CONTENT */

.content {
}


/*----------------------------------------------- FLOATERS */

.floater {
  width: 80%;
  margin: 0 auto 0 auto; /* add space between floaters */
  position: relative; /* anchor for absolute children if needed */
  height: 650px; /* keep for now, adjust later for responsiveness */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.float-content {
  width: 45%;
  z-index: 2; /* keep content on top */
}

.short {
	width: 30%;
}

.wide {
	width: 70%;
}

.float-image {
  width: 45%;
  height: 700px;
  position: relative;
  overflow: hidden; /* crop overflowing image if needed */
}

.float-content .icon {
  width: 130px;
  background-position: left top;
  background-repeat: no-repeat;
  margin-bottom: 12px;
  height: 146px;
}

.float-content .icon#alanadev {
  background-image: url(../images/pres/AlanaDev-Icon.svg);
}
.float-content .icon#idea {
  background-image: url(../images/pres/icon-idea.svg);
}
.float-content .icon#solution {
  background-image: url(../images/pres/icon-solution.svg);
}

.float-image .photo {
  width: 90%;
  height: auto;
  object-fit: contain;
  display: block;
  transform: translateY(0); /* starting point for parallax */
  transition: transform 0.1s ease-out; /* smooth out manual changes */
}

.bluebox {
  background-color: #00CDE8;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
  mix-blend-mode: color-dodge; /* <--- MAGIC */
}

#rocket {
  width: 391px;
  height: 55px;
  bottom: 200px; /* Start this lower so it visually begins below image */
  left: 62%;
}

#hand {
  width: 112px;
  height: 172px;
  bottom: 320px; /* Start this lower so it visually begins below image */
  left: 5%;
}

#phone {
  width: 177px;
  height: 206px;
  bottom: 280px; /* Start this lower so it visually begins below image */
  left: 70%;
}



/*----------------------------------------------- CORE COMPONENTS */


.core-comp {
	display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 5%; /* spacing between items */
  margin-bottom: 120px;
}


.core {
	background-color: #08060F;
	outline: 1px solid #707070;
	width: 100%;
	padding: 24px 0;
	box-sizing: border-box;
  backdrop-filter: blur(10px); /* blur whatever is behind */
  -webkit-backdrop-filter: blur(10px); /* for Safari support */
}

.core-icon {
	background-image: url(../images/pres/core-circle.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 200px 0 24px 0;
}

.core-icon-svg {
	width: 30%;
	height: auto;
}

.core ul {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
  list-style-type: disc;
  padding-left: 24px;
}

.core ul li {
	padding-bottom: 24px;
}


/*----------------------------------------------- COMPARE */


.reinventing {
	background-image: url(../images/pres/Compare-BG.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 0;
}

.compare {
	display: grid;
  grid-template-columns: 1fr auto 1fr; /* 2 equal columns */
  gap: 2%; /* spacing between items */
  overflow-x: auto;
    justify-content: center;
    align-items: center;
}

.compare-box {
  position: relative;
  overflow: hidden;
  padding: 24px 36px;
  margin-top: 24px;
}

.compare-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(74, 74, 74, 0.8);
  mix-blend-mode: overlay; /* applies only to background layer */
  z-index: 0; /* behind content */
  backdrop-filter: blur(5px); /* blur whatever is behind */
  -webkit-backdrop-filter: blur(5px); /* for Safari support */
	border: #ffffff solid 10px;
}

.compare-box.center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.compare-box.center::before {
  border-radius: 50%;
}

.compare-box > * {
  position: relative;
  z-index: 1; /* keep content above background */
}

.compare-box h3 {
	text-align: center;
}

.compare-image {
	display: block;
	width: 100%;
	margin-bottom: 26px;
}

.list-icon {
	background-position:  left center;
	min-height: 38px;
	padding-left: 86px;
	background-repeat: no-repeat;
	padding-top: 12px;
	margin-bottom: 26px;
  background-size: 50px 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.list-icon#htc {
	background-image: url(../images/pres/icon-bullet-htc.svg);
}

.list-icon#sps {
	background-image: url(../images/pres/icon-bullet-sps.svg);
}

.list-icon#uc {
	background-image: url(../images/pres/icon-bullet-uc.svg);
}

.list-icon#umoc {
	background-image: url(../images/pres/icon-bullet-umoc.svg);
}

.list-icon#centralized {
	background-image: url(../images/pres/icon-bullet-central.svg);
}

.list-icon#security {
	background-image: url(../images/pres/icon-bullet-security.svg);
}

.list-icon#efficiency {
	background-image: url(../images/pres/icon-bullet-efficiency.svg);
}

.list-icon#reliability {
	background-image: url(../images/pres/icon-bullet-reliability.svg);
}

.list-icon#easeofuse {
	background-image: url(../images/pres/icon-bullet-easeofuse.svg);
}


/*----------------------------------------------- WAITLIST */


.waitlist {
	background-color: #00CDE8;
	padding: 100px 0;
}

.waitlist .signup {
	background-color: rgba(250, 250, 250, 0.5);
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	padding: 50px;
}

.signup form {
	display: block;
}

.signup form input.form {
		display: block;
		width: 300px;
		height: 40px;
		float: left;
		margin-right: 20px;
		border-radius: 4px;
		padding-left: 12px;
		border:  none;

}

input.redbutton {
	padding: 12px 45px;
	background-color: #FF6663;
	font-size: 16px;
	color: #000000;
	border-radius: 100px;
}

input.redbutton:hover {
	cursor: pointer;
	background-color: #00CDE8;
	color: #000000;
}



/*----------------------------------------------- FOOTER */

.footer {
	padding: 50px 0;
}

.footer p {
	text-align: center;
}


















































































