/* _content/Airflow.Website/Pages/Account.cshtml.rz.scp.css */
.card[b-g7n7sz1acn]
{
	width: 50%;
	margin: 0 auto;
}

.centered[b-g7n7sz1acn]
{
	width: fit-content;
	margin: 0 auto;
}
/* _content/Airflow.Website/Pages/Dashboard.cshtml.rz.scp.css */
.card-grid[b-4nwbfry0es]
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
	height: 100vh;
}

.field[b-4nwbfry0es]
{
	display: flex;
	gap: .5rem;
}

.label[b-4nwbfry0es]
{
	font-weight: bold;
}
/* _content/Airflow.Website/Pages/Download.cshtml.rz.scp.css */
.subtitle[b-649k2ewe8v]
{
	opacity: 0.7;
	margin-bottom: 40px;
}

.download-grid[b-649k2ewe8v]
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	justify-items: center;
}

.platform-row[b-649k2ewe8v]
{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.icon[b-649k2ewe8v]
{
	width: 32px;
	height: 32px;
}

.card-header[b-649k2ewe8v]
{
	display: flex;
	align-items: center;
	gap: 12px;
	background: transparent; /* important */
	border: none; /* important */
	margin: 0;
	padding: 0;
}

.card[b-649k2ewe8v]
{
	width:50%;
}
/* _content/Airflow.Website/Pages/Features.cshtml.rz.scp.css */
.feature-grid[b-q11rw65y6e]
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 40px;
}

.feature-card[b-q11rw65y6e]
{
	padding: 24px 26px;
	border: 1px solid var(--line-color);
	border-radius: 8px;
	background: var(--card);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

	.feature-card:hover[b-q11rw65y6e]
	{
		border-color: var(--text-25);
		transform: translateY(-2px);
	}

	.feature-card h3[b-q11rw65y6e]
	{
		margin: 0 0 16px;
	}

	.feature-card ul[b-q11rw65y6e]
	{
		display: grid;
		gap: 8px 20px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.feature-card li[b-q11rw65y6e]
	{
		position: relative;
		padding-left: 14px;
		color: var(--text-50);
		font-size: 0.9rem;
		line-height: 1.4;
	}

		.feature-card li[b-q11rw65y6e]::before
		{
			content: "•";
			position: absolute;
			left: 0;
			color: var(--text-25);
		}


/* FOOTER */

.features-footer[b-q11rw65y6e]
{
	margin-top: 110px;
	padding: 70px 30px;
	text-align: center;
	border-top: 1px solid var(--text-10);
}

	.features-footer h2[b-q11rw65y6e]
	{
		margin: 0;
		font-size: 2rem;
	}

	.features-footer p[b-q11rw65y6e]
	{
		color: var(--text-50);
		margin: 12px 0 30px;
	}

/* MOBILE */

@media (max-width: 800px)
{
	.features-page[b-q11rw65y6e]
	{
		width: min(100% - 30px, 600px);
		padding-top: 50px;
	}

	.features-header[b-q11rw65y6e]
	{
		margin-bottom: 60px;
	}

	.feature-grid[b-q11rw65y6e]
	{
		grid-template-columns: 1fr;
	}

	.feature-card ul[b-q11rw65y6e]
	{
		grid-template-columns: 1fr;
	}

	.feature-section[b-q11rw65y6e]
	{
		margin-bottom: 60px;
	}
}
/* _content/Airflow.Website/Pages/Index.cshtml.rz.scp.css */
.section[b-69k3eitxjs]
{
}

.hero[b-69k3eitxjs]
{
	position: relative;
	height: 100vh;
	overflow: hidden;
}

	.hero video[b-69k3eitxjs]
	{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover; /* Crop instead of stretching */
	}

.hero-content[b-69k3eitxjs]
{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 50%;
	margin: 0 auto;
	color: white;
	text-align: center;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 255));
	gap: 16px;
}

.overlay[b-69k3eitxjs]
{
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.0); /* Adjust darkness */
}

.airflow-features[b-69k3eitxjs]
{
	width: 100%;
	background: #080b10;
	color: #fff;
}

.feature[b-69k3eitxjs]
{
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7vw;
	padding: 8vh 8vw;
	box-sizing: border-box;
}

.feature-reverse[b-69k3eitxjs]
{
	flex-direction: row-reverse;
	background: #0d1117;
}

.feature-image-frame[b-69k3eitxjs]
{
	width: 66%;
	height: auto;
	/*background-color: black;*/
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

	.feature-image-frame img[b-69k3eitxjs]
	{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

.airflow-feature-content[b-69k3eitxjs]
{
	width: 35%;
	max-width: 500px;
}

	.airflow-feature-content h2[b-69k3eitxjs]
	{
		margin: 0 0 25px;
		font-size: clamp(3rem, 5vw, 5.5rem);
		line-height: 0.95;
		font-weight: 700;
	}

	.airflow-feature-content p[b-69k3eitxjs]
	{
		margin: 0;
		font-size: clamp(1.05rem, 1.4vw, 1.35rem);
		line-height: 1.7;
		color: #aeb7c3;
	}
/* _content/Airflow.Website/Pages/Leaderboards.cshtml.rz.scp.css */
.form-group[b-g5ywqja8qs]
{
	gap: 16px;
	display: flex;
	align-content: center;
}

.align-center[b-g5ywqja8qs]
{
	text-align: center;
}

.align-right[b-g5ywqja8qs]
{
	text-align: right;
}
/* _content/Airflow.Website/Pages/Login.cshtml.rz.scp.css */
.card[b-j0hlpog35c]
{
	width: 50%;
	margin: 0 auto 40px auto;
}

.button-container[b-j0hlpog35c]
{
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 0;
}

.centered[b-j0hlpog35c]
{
	width: fit-content;
	margin: 0 auto;
}
/* _content/Airflow.Website/Pages/Screenshots.cshtml.rz.scp.css */
.screenshot-grid[b-c3qqeys7hu]
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

	.screenshot-grid img[b-c3qqeys7hu]
	{
		width: 100%;
		height: auto;
		display: block;
		border-radius: 8px;
	}

		.screenshot-grid img:hover[b-c3qqeys7hu]
		{
			transform: scale(1.3);
		}

.lightbox[b-c3qqeys7hu]
{
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
	align-items: center;
	justify-content: center;
}

#lightbox-image[b-c3qqeys7hu]
{
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}


.lightbox-button[b-c3qqeys7hu]
{
	position: absolute;
	border: none;
	background: rgb(0, 0, 0, 0.00);
	color: white;
	font-size: 30px;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 8px;
}

.lightbox-prev[b-c3qqeys7hu]
{
	left: 30px;
}

.lightbox-next[b-c3qqeys7hu]
{
	right: 30px;
}

.lightbox-button:hover[b-c3qqeys7hu]
{
	background: rgba(255, 255, 255, 0.2);
}

.lightbox-close[b-c3qqeys7hu]
{
    top: 20px;
    right: 30px;
}
/* _content/Airflow.Website/Pages/Shared/_Layout.cshtml.rz.scp.css */
.btn-primary[b-wfdze2bpjl] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills[b-wfdze2bpjl], .nav-link.active .nav-pills .show > .nav-link[b-wfdze2bpjl] {
  color: #ff0;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-wfdze2bpjl] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-wfdze2bpjl] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-wfdze2bpjl] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-wfdze2bpjl] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-wfdze2bpjl] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
