:root {
	--background-root: #FFFFFF;
	--background-root-gradient: linear-gradient(135deg, #FFFFFF 0%, #F0F4FF 100%);

	--background-default: #FAFBFF;
	--background-default-gradient: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 100%);
		
	--background-higher: #FFFFFF;
	--background-higher-gradient: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 100%);

	--background-highest: #F8F9FF;
	--background-highest-gradient: linear-gradient(135deg, #F8F9FF 0%, #EEF2FF 100%);

	--foreground-default: #0F172A;
	--foreground-dimmer: #64748B;

	--accent-primary: #6366F1;
	--accent-primary-gradient: linear-gradient(135deg, #818CF8 0%, #6366F1 100%);
	
	--accent-secondary: #A5B4FC;
	--accent-secondary-gradient: linear-gradient(135deg, #C7D2FE 0%, #A5B4FC 100%);
}

@font-face {
  font-family: Switzer;
  src: url(fonts/Switzer-Regular.ttf);
}

@font-face {
  font-family: Switzer Bold;
  src: url(fonts/Switzer-Bold.ttf);
}

@font-face {
  font-family: Switzer Semi Bold;
  src: url(fonts/Switzer-Semibold.ttf);
}

* {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

html, body {
  height: 100%;
  width: 100%;
	color: var(--foreground-default);
	font-family: Switzer;
	background: var(--background-root);
	font-size: 18px;
	overflow-x: hidden;
	scroll-behavior: smooth;	
}

h1 {
	font-family: Switzer Bold;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--foreground-default) 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-family: Switzer Bold;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

h3 {
	font-family: Switzer Bold;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
}

h4 {
	font-family: Switzer Bold;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

p {
	line-height: 2;
	color: var(--foreground-dimmer);
	font-size: 20px;
	max-width: 65ch;
}

a {
	text-decoration: none;
	color: var(--foreground-dimmer);
	transition: color 0.1s ease-out;
	line-height: 150%;
	font-size: 16px;
}

a:hover {
	color: var(--foreground-default);
}

a:focus-visible {
	outline: 2px solid var(--accent-secondary);
	outline-offset: 4px;
	border-radius: 16px;
}

a.button, button {
	border: none;
	font-family: Switzer Semi Bold;
	color: #FFFFFF;
	padding: 16px 32px;
	background: var(--accent-primary-gradient);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
	border-radius: 12px;
	font-size: 16px;
	line-height: 150%;
	cursor: pointer;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

a.button::before, button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

a.button:hover::before, button:hover::before {
	left: 100%;
}

a.button:hover, button:hover {
	box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
	transform: translateY(-2px);
}

a.button:active, button:active {
	box-shadow: 0 2px 8px 0 rgba(99, 102, 241, 0.3);
	transform: translateY(0);
}

a.button.secondary, button.secondary {
	background: var(--background-highest-gradient);
	color: var(--foreground-default);
}

a.button.white, button.white {
	background: linear-gradient(180deg, #d2d2d2 0%, rgba(255, 255, 255, 0.32) 100%);
	color: var(--background-root);
}

a.button.white:hover, button.white:hover {
	filter: brightness(150%);
}

a.button.small, button.small {
	padding: 8px 16px;
	border-radius: 12px;
}

input, textarea {
	background: var(--background-higher);
	border: 1px solid var(--background-highest);
	color: var(--foreground-default);
	transition: 0.3s;
	border-radius: 6px;
	font-size: 18px;
	font-family: Switzer;
	padding: 10px 16px;
	width: -webkit-fill-available;
}

textarea {
	transition: border 0.3s, background 0.3s, box-shadow 0.3s, resize 0s;
	min-height: 128px;
	max-height: 256px;
	resize: vertical;
}

input:hover, textarea:hover {
	border-color: #535353;
}

input:focus, textarea:focus {
	box-shadow: 0 0 0 2px #4e2eab;
}


.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.left {
	align-items: flex-start;
	text-align: left;
	justify-content: flex-start;
}

.center {
	justify-content: center;
	align-items: center;
	text-align: center;
}

section.center div.flex.col.gap-16.center{
	width: 668px;
}

.flex-start {
	align-items: flex-start;
}

.flex-end {
	align-items: flex-end;
}

.space-between {
	justify-content: space-between;
}

.col {
	flex-direction: column;
}

.wrap {
	flex-wrap: wrap;
}

.gap-4 {
	gap: 4px;
}

.gap-8 {
	gap: 8px;
}

.gap-16 {
	gap: 16px;
}

.gap-32 {
	gap: 32px;
}

.gap-64 {
	gap: 64px;
}

.gap-128 {
	gap: 128px;
}

.p-4 {
	padding: 4px;
}

.p-8 {
	padding: 8px;
}

.p-16 {
	padding: 16px;
}

.p-32 {
	padding: 32px;
}

.p-64 {
	padding: 64px;
}

.p-128 {
	padding: 128px;
}

.pX-4 {
	padding-left: 4px;
	padding-right: 4px;
}

.pX-8 {
	padding-left: 8px;
	padding-right: 8px;
}

.pX-16 {
	padding-left: 16px;
	padding-right: 16px;
}

.pX-32 {
	padding-left: 32px;
	padding-right: 32px;
}

.pX-64 {
	padding-left: 64px;
	padding-right: 64px;
}

.pX-128 {
	padding-left: 128px;
	padding-right: 128px;
}

.pY-4 {
	padding-top: 4px;
	padding-bottom: 4px;
}

.pY-8 {
	padding-top: 8px;
	padding-bottom: 8px;
}

.pY-16 {
	padding-top: 16px;
	padding-bottom: 16px;
}

.pY-32 {
	padding-top: 32px;
	padding-bottom: 32px;
}

.pY-64 {
	padding-top: 64px;
	padding-bottom: 64px;
}

.pY-128 {
	padding-top: 128px;
	padding-bottom: 128px;
}


nav {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.6);
	width: calc(100% - 256px);
	position: fixed;
	z-index: 5;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

nav h4 {
	color: var(--foreground-default);
}

nav a.selected {
	color: var(--foreground-default);
}

a.hamburger {
	display: none;
	justify-content: center;
	align-items: center;
	padding: 8px !important;
/* 	backdrop-filter: blur(40px); */
}

a.hamburger ion-icon {
	width: 24px;
	height: 24px;
}

.menu-icon-open {
	display: none !important;
}

.close-icon-open {
	display: flex !important;
}





section {
	display: flex;
	flex-direction: column;
	gap: 80px;
	padding: 160px 128px;
	position: relative;
}

section.landing {
	padding-top: 160px;
	padding-bottom: 160px;
	background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
}

section.landing::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

section.landing > * {
	position: relative;
	z-index: 1;
}

section.row {
	flex-direction: row;
}

section.feature {
	align-items: center;
}

section.feature > div, section.reviews > div {
	flex: 1 1 0px;
}

section.higher {
	background: var(--background-default);
}

section.accent {
	background: var(--accent-primary);
}

.feature.alt {
	flex-direction: row-reverse;
}

.container {
	background: var(--background-higher-gradient);
	border-radius: 24px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
}

.container.bounce {
	position: relative;
	top: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container.bounce:hover {
	top: -8px;
	box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: rgba(165, 180, 252, 0.5);
}

.container.highest {
	background: var(--background-highest-gradient);
}

.container.accent {
	background: var(--accent-primary-gradient);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35), 0 4px 12px rgba(99, 102, 241, 0.2);
	border: 1px solid rgba(165, 180, 252, 0.4);
}

.container.accent:hover {
	box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45), 0 6px 18px rgba(99, 102, 241, 0.3);
}

.container.accent.highest {
	background: var(--accent-secondary-gradient);
	box-shadow: 0 6px 20px rgba(129, 140, 248, 0.3);
	border: 1px solid rgba(165, 180, 252, 0.5);
}

.container.small {
	border-radius: 16px;
	box-shadow: 0px 3px 8px 0px #00000040;
}

.container.smallest {
	width: 128px;
	height: 128px;
	border-radius: 16px;
	box-shadow: 0px 3px 8px 0px #00000040;
}

.container.tiny {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	box-shadow: 0px 3px 8px 0px #00000040;
}

.image {
	flex-grow: 1;
}

.section.landing {
	padding-top: 200px;
}

.image.landing {
	height: 700px;
}

.image.feature {
	height: 560px;
}

.landing > div > div {
	width: 668px;
}

ion-icon {
	width: 48px;
	height: 48px;
}

.features .flex.wrap > div {
	width: 300px;
}

.reviews {
/* 	padding-right: 0; */
}

.reviews > div:last-child {
	max-width: 50%;
	overflow-x: hidden;
	align-items: flex-start;
}

.reviews .flex.row {
	position: relative;
}

.reviews .flex.row .container {
	width: 300px;
	height: 174px;
}

.reviews .flex.col.gap-32 {
	position: relative;
}

.flex.col.gap-32 .scrim {
		position: absolute;
	background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 14.58%, rgba(0, 0, 0, 0) 86.46%, #000000 100%);
	height: 592px;
	width: 100%;
	z-index: 3;
}

.reviews .flex.col .flex.row:first-child, .reviews .flex.col .flex.row:last-child {
/* 	padding-left: 300px; */
	left: -200px;
}

.reviews .container.shadow-left {
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%), linear-gradient(172.68deg, #212121 5.69%, #121212 94.31%);
}

.companies .flex.left.wrap {
	gap: 5%;
}

.companies .flex.left.wrap .container.flex.center {
	margin-bottom: 5%;
}

.see-why .flex.col .container {
	width: 180px;
	height: 180px;
}

.see-why .flex.col {
	width: 256px;
}

.cta svg {
	width: 64px;
	height: 64px;	
}

footer {
	background: var(--background-default);
	border-top: 1px solid #E5E7EB;
	padding: 128px 10%;
}

footer a > div {
	color: var(--foreground-default);
}

footer > div {
	width: 100%;
}

footer {
	display: none;
}

footer .flex.col.space-between {
	max-width: 400px;
	align-self: stretch;
}

footer .flex.col.space-between svg {
	width: 60px;
	height: 60px;
}

footer .flex.col.space-between .flex.center {
	justify-content: flex-start;
}

footer .flex.gap-32 ion-icon {
	width: 20px;
	height: 20px;
}

.values .container {
	width: 100%;
}

.values .container.small {
	width: fit-content;	
}

.image-gallery {
	padding: 0;
	position: relative;
}

.image-gallery .flex.center {
	width: 1792px;
}

.image-gallery .flex.center .container {
	width: 400px;
	height: 400px;
}

.image-gallery .scrim {
	position: absolute;
	background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 14.58%, rgba(0, 0, 0, 0) 86.46%, #000000 100%);
	width: 100%;
	height: 403px;
	top: 127px;
}

.team div.flex.col.gap-64 {
	width: 100%;
}

.team div.flex.col.gap-64 > div {
	width: 100%;
}

.team div.flex.col.gap-64 > div:last-child {
	gap: calc((100% - 650px) / 4);
	justify-content: flex-start;
}

.team .flex.left.wrap {
	gap: 10%;
}

.team .flex.left.wrap > div.flex.col.gap-16 {
	margin-bottom: 10%;
	align-items: flex-start;
}

.testimonials .container.highest {
	width: 180px;
	height: 180px;
}

.testimonials .container.p-32 {
	width: 60%;
	margin-right: auto;
}

.testimonials .container.p-32.align-right{
	margin-left: auto;
	margin-right: 0;
}


.companies div.flex.col.gap-64 {
	width: 100%;
}

.companies div.flex.col.gap-64 > div {
	width: 100%;
}

.companies div.flex.col.gap-64 > div:last-child {
	gap: calc((100% - 992px) / 3);
	justify-content: flex-start;
}

.companies .container.flex.center {
	width: 200px;
	height: 200px;
}

.companies div.flex.col.gap-64 > div:last-child .container.flex.center:last-child {
	border: 1px dashed #95A2B3;
	background: none;
}

.contact .flex.row.left.gap-32 {
	align-items: center;
}

.contact a.button {
	width: calc(100% - 64px);
	text-align: center;
}


.pricing-hero {
	background: var(--accent-primary-gradient);
	padding-bottom: 64px;
}

.toggle {
	background: var(--accent-primary-gradient);
	box-shadow: 0px 3px 16px 0px #210e55;
	border: 1px solid var(--accent-primary);
	border-radius: 16px;
}

.toggle .option {
	width: 128px;
	border-radius: 16px;
	cursor: pointer;
	padding: 16px;
}

.toggle .option p {
	font-weight: 500;
	font-family: Switzer Semi Bold;
	font-size: 16px;
}

.toggle .option.selected {
	background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.32) 100%);
}

.toggle .option.selected p {
	color: var(--background-root);
}

.pricing .container.flex.col.center.gap-32.p-32, .pricing .button {
	width: fit-content;
}

.pricing .flex.col.gap-16.left {
	width: -webkit-fill-available;
}

.pricing .flex.flex-end h2 {
	height: 55px;
}

.pricing a.button {
	width: calc(100% - 32px);
}

.get-started-body {
	overflow: hidden;
}

.get-started {
	max-width: 400px;
	margin: auto;
}

.get-started svg {
	width: 64px;
	height: 64px;
}

.get-started .flex.col.gap-32 > .flex.col.gap-16 {
	width: 100%;	
}

.get-started a.button {
	align-self: stretch;
}

.get-started p {
	font-size: 16px;
}

.get-started p a {
	color: var(--foreground-default);
}

.pricing .flex.row.center > div:nth-child(2) {
	z-index: 2;
	transform: scale(1.1);
	backdrop-filter: blur(100px);
}

@media only screen and (min-width: 1500px) {
	section, footer {
		padding: 128px 18%;
	}

	nav {
		padding: 16px 18% !important;
		width: calc(100% - 36%);
	}
}

@media only screen and (min-width: 2000px) {
	section, footer {
		padding: 128px 25%;
	}

	nav {
		padding: 16px 25% !important;
		width: calc(100% - 50%);
	}
}

@media only screen and (min-width: 3000px) {
	section, footer {
		padding: 128px 30%;
	}

	nav {
		padding: 16px 30% !important;
		width: calc(100% - 60%);
	}
}

@media only screen and (max-width: 1300px) {
	section {
		padding: 128px 64px;
	}

	nav {
		padding: 16px 64px !important;
		width: calc(100% - 128px);
	}
}

@media only screen and (max-width: 1000px) {
	section {
		flex-direction: column !important;
	}

	section.feature > div, section.reviews > div {
		flex: revert;
		width: 100%;
	}

	.reviews > div:last-child {
		max-width: 100%;
	}

	.pricing .flex.row.center.gap-16 {
		flex-direction: column;
	}

	.contact .flex.row.gap-128 {
		flex-direction: column;
		gap: 64px;
    align-items: center;
    width: 100%;
	}

	.contact .flex.row.gap-128 .flex.col.gap-32 {
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.contact .flex.row.gap-128 .flex.col.gap-32 .flex.row.gap-32 {
		width: 100%;
	}

	.contact .flex.row.gap-128 .flex.row.left.gap-32 {
		width: 500px !important;
	}
}

@media only screen and (max-width: 900px) {
	.hamburger.menu-icon-open {
		display: flex !important;
	}

	nav .flex.gap-32 {
		display: none;
	}
	
	.open {
		align-items: flex-start;
/* 		height: 100%;	 */
	}

	.open .flex.gap-8 {
		position: relative;
		top: 1px;
	}

	.open .flex.gap-32 {
		display: flex;
    flex-direction: column;
    position: absolute;
    background: var(--background-root);
    top: 78px;
/*     padding: 32px 64px; */
    left: 0;
    width: 100%;
    height: 100vh;
		justify-content: start;
    align-items: start;
		gap: 0;
	}

	.open .flex.gap-32 a {
/* 		font-size: 20px; */
		width: calc(100% - 128px);
		padding: 16px 64px;
/* 		border-bottom: 1px solid var(--background-highest) */
	}

	.open .buttons {
		position: absolute;
    top: 332px;
    left: 0;
    width: calc(100% - 128px);
    flex-direction: column;
    padding: 0 64px;
    align-items: flex-start;
	}

	.open .buttons > a {
		width: -webkit-fill-available;
    text-align: center;
		padding: 16px 32px;
		border-radius: 16px;
	}
}

@media only screen and (min-width: 900px) {
	.hamburger.menu-icon-open, .hamburger.close-icon-open {
		display: none !important;
	}
}

@media only screen and (max-width: 700px) {
	.landing > div > div, section.center div.flex.col.gap-16.center, section.center div.flex.col.gap-16.center {
		width: auto;
	}
}

@media only screen and (max-width: 600px) {
	.open .flex.gap-8 {
    position: relative;
    top: 3px;
	}
	
	section {
		padding: 128px 32px;
	}

	.features .flex.wrap > div {
		width: 100%;
	}

	h1 {
		font-size: 56px;
	}
	

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

	h2 {
		font-size: 40px;
	}
	
	h3 {
		font-size: 28px;
	}
	
	h4 {
		font-size: 20px;
	}

	.team .flex.left.wrap {
		gap: 0;
	}

	.team .flex.left.wrap > div.flex.col.gap-16 {
		width: 50%;
	}

	.image-gallery .scrim {
		top: 116px;
	}

	.values .container {
		width: auto;
	}

	.testimonials .container.p-32 {
		width: calc(100% - 64px);
		margin: revert;
	}

	.pricing .container.flex.col.center.gap-32.p-32 .flex-end h2 {
		height: 45px;
	}

	.pricing .container.flex.col.center.gap-32.p-32 .flex-end h2 {
		height: 45px;
	}

	nav {
		padding: 16px 32px !important;
    width: calc(100% - 64px);
	}

	.companies .flex.left.wrap {
		justify-content: center;
	}

	.contact .flex.row.gap-128 .flex.row.left.gap-32 {
		width: auto !important;
	}

	.contact .flex.row.gap-128 .flex.row.gap-32:first-child {
		flex-direction: column		
	}

	.contact .flex.row.gap-128 .flex.col.gap-32 {
		align-items: flex-start;
	}

	.contact .flex.row.gap-128 .flex.row.left.gap-32 {
		flex-direction: row;
	}

	.buttons {
		display: none;
	}

	.open .flex.gap-32 a {
		width: calc(100% - 64px);
    padding: 16px 32px;
	}

	.open .buttons {
		width: calc(100% - 64px);
		padding: 0 32px;
		display: flex;
	}

  a.hamburger ion-icon {
	  width: 28px;
	  height: 28px;
  }

	.contact .flex.col.gap-16, .contact .flex.col.gap-16 .flex.row.gap-16 {
		width: 100%;
	}

	.contact .flex.col.gap-16 .flex.row.gap-16 {
		flex-direction: column;
	}
}

@media (max-height: 700px) {
	.get-started-body {
		overflow: revert;
	}
}

::selection {
	background: var(--accent-primary);
	color: var(--foreground-default);
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
	background: var(--background-default);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-primary-gradient);
	border-radius: 20px;
	transition: 0.3s;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 0px rgba(0, 0, 0, 0) inset;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-secondary-gradient);
}