:root {
	--color-theme-primary: #715087;
	--color-theme-primary-30: rgba(113, 80, 135, 0.2);
	--color-theme-primary-light: #a986c1;
	--color-theme-secondary: #e0b8f6;
	--color-theme-grayish-blue: #9194A1;
	--color-feature-pill: #6ee7d4;
}

html {
	scroll-padding-top: 9rem;
}

.font-theme-heading {
	font-family: "Exo 2", sans-serif;
}

.font-theme-content {
	font-family: "Alegreya Sans", sans-serif;
}

.bg-theme-primary {
	background-color: var(--color-theme-primary);
}

.bg-theme-primary-light {
	background-color: var(--color-theme-primary-light);
}

.bg-theme-primary-30 {
	background-color: var(--color-theme-primary-30);
}

.bg-theme-secondary {
	background-color: var(--color-theme-secondary);
}

.text-theme-primary {
	color: var(--color-theme-primary);
}

.text-theme-secondary {
	color: var(--color-theme-secondary);
}

.text-theme-grayish-blue {
	color: var(--color-theme-grayish-blue);
}

.hover\:text-theme-secondary:hover {
	color: var(--color-theme-secondary);
}

.hover\:text-theme-primary:hover {
	color: var(--color-theme-primary);
}

.hover\:bg-theme-secondary:hover {
	background-color: var(--color-theme-secondary);
}

.hover\:bg-theme-primary:hover {
	background-color: var(--color-theme-primary);
}

.hover\:bg-theme-primary-light:hover {
	background-color: var(--color-theme-primary-light);
}

.hover\:bg-theme-primary-30:hover {
	background-color: var(--color-theme-primary-30);
}

.hover\:bg-transparent:hover {
	background-color: transparent;
}

.hover\:border-theme-primary:hover {
	border-color: var(--color-theme-primary);
}

.border-theme-grayish-blue {
	border-color: var(--color-theme-grayish-blue);
}

.border-theme-primary {
	border-color: var(--color-theme-primary);
}

.bg-feature-pill {
	background-color: var(--color-feature-pill);
}

.text-feature-pill {
	color: var(--color-feature-pill);
}

.border-feature-pill {
	border-color: var(--color-feature-pill);
}

.hover\:text-feature-pill:hover {
	color: var(--color-feature-pill);
}

.hover\:border-feature-pill:hover {
	border-color: var(--color-feature-pill);
}

@media (min-width: 768px) {
	.md\:border-feature-pill {
		border-color: var(--color-feature-pill);
	}
}

/* Hero background plane behind the phone screenshot. */
.base {
	position: absolute;
	width: 100%;
	height: 200px;
	bottom: -50px;
	right: 0;
}

/* Add hover and border styles for feature tabs */
.hover\:border-theme-secondary:hover {
  border-color: rgb(224, 184, 246); /* Updated to the correct light pink color */
}

.hover\:text-theme-secondary:hover {
  color: rgb(224, 184, 246); /* Updated to the correct light pink color */
}

@media (min-width: 768px) {
	.feature-tab-item.feature-tab-active {
		border-bottom-width: 4px;
	}

	.md\:border-b-4 {
		border-bottom-width: 4px;
	}

	.md\:border-theme-secondary {
		border-color: rgb(224, 184, 246); /* Updated to the correct light pink color */
	}
}

@media (min-width: 768px) {
	.feature-tab-link.bg-theme-secondary {
		background-color: transparent;
	}

	.feature-tab-link.border-theme-secondary {
		border-color: transparent;
	}
}

.appstore-badges {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.appstore-badges > div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.appstore-badges > div > img {
	height: 50px;
	width: auto;
}

@media (min-width: 640px) {
	.appstore-badges {
		flex-direction: row;
	}
}

@media (min-width: 1280px) {
	.appstore-badges > div > img {
		height: 60px;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	.desktop-nav-list {
		font-size: 0.85rem;
	}

	.desktop-nav-pill {
		padding-left: .4rem;
		padding-right: .4rem;
	}

	.desktop-nav-cta {
		padding-left: .4rem;
		padding-right: .4rem;
	}
}


@media (min-width: 768px) {
}

.mobile-menu-panel {
	opacity: 0;
	transform: translateY(-8px) scale(0.97);
	transition: opacity 280ms ease, transform 280ms ease;
}

.site-header-shell {
	position: sticky;
	top: 0;
	z-index: 20;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.mobile-menu-panel.is-open {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.mobile-menu-panel {
		transition: none;
	}
}

/* Eyes Only column styling in comparison tables */
.eyes-only-column {
	border-left: 1px solid var(--color-theme-secondary);
	border-right: 1px solid var(--color-theme-secondary);
	background-color: rgba(224, 184, 246, 0.1);
}

thead .eyes-only-column {
	border: none;
	background-color: var(--color-theme-secondary);
}

tbody tr:last-child .eyes-only-column {
	border-bottom: 1px solid var(--color-theme-secondary);
}

.price-tier-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 20rem));
	justify-content: center;
}



