:root {
	--mason-green: #005239;
	--mason-gold: #FFC733;
	--logo-black: #333333;
	--secondary-gray: #727579;
	--white: #fff;
	--blue-accent: #4299e1;
	--purple-accent: #9f7aea;
	--teal-accent: #38b2ac;
	--orange-accent: #ed8936;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	font-family: Inter, Arial, Helvetica, sans-serif;
	background: var(--mason-green);
	color: var(--white);
	margin: 0px;
	padding: 0px;
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0px auto;
	padding: 0px 20px;
	width: 100%;
}

img,
svg,
video,
canvas {
	max-width: 100%;
	height: auto;
	display: block;
}

.header {
	background: var(--white);
	color: var(--mason-green);
	padding: 0px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 1000;
}

.navbar {
	background: transparent;
	padding: 0.5rem 0px;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0px auto;
	padding: 0px 2rem;
	position: relative;
	width: 100%;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.gmu-logo {
	height: 48px;
	width: auto;
	display: block;
	background: transparent;
	margin-right: 0.5rem;
	padding: 0.2rem 0px;
	flex-shrink: 0;
}

.second-logo {
	height: 48px;
	width: auto;
	display: block;
	background: transparent;
	margin-right: 0.5rem;
	padding: 0.2rem 0px;
	flex-shrink: 0;
}

.nav-logo span {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--mason-green);
	letter-spacing: 1px;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0px;
	padding: 0px;
	align-items: center;
}

.nav-link {
	color: var(--mason-green);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.2s;
}

.nav-link:hover {
	color: var(--mason-gold);
}

@media screen and (max-width: 1024px) {
	.header .nav-container {
		padding: 0px 1rem !important;
		flex-wrap: nowrap !important;
	}

	.nav-logo span {
		font-size: 1.2rem !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		max-width: 55vw !important;
	}

	.header .nav-menu {
		display: none !important;
		position: absolute !important;
		top: 100% !important;
		left: 0px !important;
		width: 100% !important;
		background: var(--white) !important;
		flex-direction: column !important;
		padding: 1rem 0px !important;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px !important;
		gap: 0px !important;
		z-index: 1000 !important;
	}

	.header .nav-menu.active {
		display: flex !important;
	}

	.nav-menu li {
		padding: 0.75rem 1.5rem !important;
		border-bottom: 1px solid rgb(240, 240, 240) !important;
		width: 100% !important;
	}

	.nav-menu li:last-child {
		border-bottom: none !important;
	}

	.mobile-menu-toggle {
		display: block !important;
		margin-left: auto !important;
	}
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--mason-green);
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-menu-toggle:hover {
	color: var(--mason-gold);
}

@media screen and (max-width: 768px) {
	.header .nav-container {
		padding: 0px 1rem !important;
		flex-wrap: nowrap !important;
	}

	.nav-logo span {
		display: none !important;
	}

	.header .nav-menu {
		display: none !important;
		position: absolute !important;
		top: 100% !important;
		left: 0px !important;
		width: 100% !important;
		background: var(--white) !important;
		flex-direction: column !important;
		padding: 1rem 0px !important;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px !important;
		gap: 0px !important;
		z-index: 1000 !important;
	}

	.header .nav-menu.active {
		display: flex !important;
	}

	.nav-menu li {
		padding: 0.75rem 2rem !important;
		border-bottom: 1px solid rgb(240, 240, 240) !important;
		width: 100% !important;
	}

	.nav-menu li:last-child {
		border-bottom: none !important;
	}

	.mobile-menu-toggle {
		display: block !important;
	}
}

@media screen and (max-width: 480px) {
	.header .nav-container {
		padding: 0px 1rem !important;
	}

	.nav-logo {
		gap: 0.5rem !important;
	}

	.gmu-logo {
		height: 30px !important;
	}

	.nav-logo span {
		font-size: 1rem !important;
	}
}

.hero {
	background: #F9FAFB;
	color: var(--logo-black);
	padding: 8.5rem 0px 4.5rem;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -5%;
	transform: translateY(-50%);
	width: 40vw;
	height: 80vh;
	background-image: url('../images/fingerprint_edit.png');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: contain;
	opacity: 0.1;
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -5%;
	transform: translateY(-50%);
	width: 40vw;
	height: 80vh;
	background-image: url('../images/dotted_face_edit.png');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;
	opacity: 0.1;
	pointer-events: none;
}

.hero-container {
	max-width: 1100px;
	margin: 0px auto;
	padding-left: clamp(12px, 4vw, 24px);
	padding-right: clamp(12px, 4vw, 24px);
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 1;
}

.hero-content {
	width: 100%;
	max-width: 760px;
	text-align: center;
	margin: 0px auto;
}

.hero-visual {
	width: 100%;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--mason-green);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: clamp(1rem, 4vw, 1.25rem);
	color: var(--secondary-gray);
	margin-bottom: 2rem;
	line-height: 1.5;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.hero {
		padding: 6rem 0px 2rem !important;
		min-height: auto !important;
	}

	.hero::before, .hero::after {
		display: none;
	}

	.hero .hero-container {
		gap: 2rem !important;
		text-align: center !important;
		padding: 2rem 20px !important;
	}

	.hero-buttons {
		flex-direction: column !important;
		align-items: center !important;
	}

	.btn {
		width: 100% !important;
		max-width: 300px !important;
		justify-content: center !important;
	}

	.btn-primary {
		margin-right: 0px !important;
	}
}

@media screen and (max-width: 480px) {
	.hero .hero-container {
		padding: 1rem 15px !important;
		gap: 1.5rem !important;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--mason-gold) 0%, #ffdb70 100%);
	color: var(--mason-green);
	border: none;
	border-radius: 8px;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	margin-right: 0px;
	transition: 0.3s;
	box-shadow: rgba(255, 199, 51, 0.3) 0px 4px 15px;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #ffdb70 0%, var(--mason-gold) 100%);
	transform: translateY(-2px);
	box-shadow: rgba(255, 199, 51, 0.4) 0px 6px 20px;
}

.btn-secondary {
	background: var(--white);
	color: var(--mason-green);
	border: 2px solid var(--mason-gold);
	border-radius: 8px;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: 0.3s;
}

.btn-secondary:hover {
	background: var(--mason-gold);
	color: var(--mason-green);
	transform: translateY(-2px);
	box-shadow: rgba(255, 199, 51, 0.3) 0px 4px 15px;
}

.btn-large {
	padding: 1rem 2.5rem;
	font-size: 1.15rem;
}

.code-block {
	background: rgb(26, 32, 44);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px;
}

.code-header {
	background: rgb(45, 55, 72);
	padding: 1rem;
	border-bottom: 1px solid rgb(74, 85, 104);
}

.code-title {
	color: rgb(226, 232, 240);
	font-weight: 500;
}

.code-content {
	padding: 1.5rem;
}

.code-content pre {
	color: rgb(226, 232, 240);
	font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
	font-size: 0.9rem;
	line-height: 1.5;
	white-space: pre-wrap;
	word-break: break-word;
	overflow-x: auto;
}

.hero-summary-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	width: 100%;
	max-width: 920px;
	margin: 0px auto;
}

.hero-summary-card {
	background: rgb(26, 32, 44);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 30px;
	border: 1.5px solid rgba(255, 199, 51, 0.25);
}

.summary-header {
	background: rgb(45, 55, 72);
	padding: 0.85rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--mason-gold);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.summary-label i {
	color: var(--mason-gold);
}

.summary-body {
	padding: 1.25rem 1.5rem;
}

.summary-body pre {
	color: rgb(226, 232, 240);
	font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
	font-size: 0.85rem;
	line-height: 1.4;
	white-space: pre-wrap;
	word-break: break-word;
	margin: 0px;
}

@media screen and (min-width: 992px) {
	.hero-summary-grid {
		grid-template-columns: repeat(2, minmax(0px, 1fr));
	}
}

section {
	padding: 80px 0px;
	overflow-wrap: anywhere;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--mason-green);
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: rgb(71, 85, 105);
	margin-bottom: 2rem;
}

.algorithms {
	background: var(--white);
	padding: 4rem 0px;
}

@media screen and (max-width: 768px) {
	.algorithms {
		padding: 3rem 0px;
	}
}

.algorithms .section-title {
	color: var(--mason-green);
}

.algorithms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	justify-items: center;
}

.algorithm-card {
	background: var(--white);
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px;
	padding: 2rem 1.5rem;
	width: 100%;
	max-width: 400px;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 1rem;
	border: 2px solid transparent;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}

.algorithm-card::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 4px;
	background: linear-gradient(90deg, var(--mason-gold), var(--blue-accent));
	transform: scaleX(0);
	transition: transform 0.3s;
}

.algorithm-card:hover {
	transform: translateY(-8px);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 40px;
	border-color: var(--mason-gold);
}

.algorithm-card:hover::before {
	transform: scaleX(1);
}

.algorithm-card:nth-child(1) .algorithm-icon {
	color: var(--mason-gold);
}

.algorithm-card:nth-child(2) .algorithm-icon {
	color: var(--mason-gold);
}

.algorithm-card:nth-child(3) .algorithm-icon {
	color: var(--mason-gold);
}

.algorithm-card:nth-child(4) .algorithm-icon {
	color: var(--mason-gold);
}

.algorithm-icon {
	font-size: 1.4rem;
	color: var(--mason-gold);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.algorithm-card:hover .algorithm-icon {
	transform: scale(1.08);
}

.algorithm-card h3 {
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgb(0, 82, 57) !important;
}

.algorithm-card p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
	color: rgb(51, 51, 51) !important;
}

.algorithm-features {
	list-style: none;
	margin-bottom: 1.5rem;
}

.algorithm-features li {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: rgb(51, 51, 51) !important;
}

.algorithm-status .status-badge {
	background: var(--mason-gold);
	color: var(--mason-green);
	font-weight: 700;
	border-radius: 4px;
	padding: 0.25rem 0.75rem;
	font-size: 0.95rem;
	margin-top: 1rem;
	display: inline-block;
}

.status-badge.status-coming-soon {
	background: var(--secondary-gray);
	color: var(--white);
	opacity: 0.8;
}

.demo {
	background: var(--mason-green);
	padding: 2rem 0px 3rem;
}

.demo .section-title,
.demo .section-subtitle {
	color: var(--white);
}

.demo-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
	align-items: start;
}

.demo-form {
	background: var(--white);
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px;
	padding: 2rem 2rem 1.5rem;
	margin: 0px;
	border: 2px solid var(--mason-green);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group label {
	color: var(--mason-green);
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.75rem;
	border: 1.5px solid var(--mason-green);
	border-radius: 4px;
	font-size: 1rem;
	margin-bottom: 1rem;
	background: var(--white);
	color: var(--logo-black);
	font-family: inherit;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: 2px solid var(--mason-gold);
	border-color: var(--mason-gold);
}

.checkbox-label {
	color: var(--mason-green);
	font-weight: 500;
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-bottom: 0.5rem;
	padding: 0.75rem;
	border-radius: 8px;
	transition: background-color 0.3s;
	border: 2px solid transparent;
}

.checkbox-label:hover {
	background-color: rgba(0, 82, 57, 0.05);
	border-color: var(--mason-gold);
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 22px;
	height: 22px;
	border: 2px solid var(--mason-green);
	border-radius: 6px;
	margin-right: 0.75rem;
	position: relative;
	transition: 0.3s;
	display: inline-block;
	flex-shrink: 0;
	background: white;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

.checkbox-label:hover .checkmark {
	border-color: var(--mason-gold);
	background-color: rgba(255, 199, 51, 0.1);
	transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
	background: var(--mason-green);
	border-color: var(--mason-green);
	box-shadow: rgba(0, 82, 57, 0.3) 0px 2px 8px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 16px;
	font-weight: bold;
	text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
	animation: 0.3s ease-in-out 0s 1 normal none running checkboxPulse;
}

@keyframes checkboxPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.comparison-container {
	background: white;
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.comparison-header {
	background: rgb(248, 250, 252);
	padding: 1.5rem;
	border-bottom: 1px solid rgb(226, 232, 240);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.comparison-header h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--mason-green);
	margin: 0px;
}

.comparison-tabs {
	display: flex;
	gap: 0.5rem;
}

.tab-btn {
	padding: 0.5rem 1rem;
	border: 2px solid rgb(226, 232, 240);
	background: white;
	color: rgb(74, 85, 104);
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: 0.3s;
}

.tab-btn:hover {
	border-color: var(--mason-green);
	color: var(--mason-green);
}

.tab-btn.active {
	background: var(--mason-green);
	border-color: var(--mason-green);
	color: white;
}

.comparison-content {
	padding: 1.5rem;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.side-by-side-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.demo-results {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.result-card {
	background: var(--white);
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 4px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: 2px solid var(--mason-gold);
}

.result-card h3,
.result-card h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--mason-green);
}

.result-card h4 {
	font-size: 1.1rem;
}

.result-content {
	color: rgb(74, 85, 104);
	line-height: 1.6;
}

.placeholder {
	color: var(--secondary-gray);
	font-style: italic;
}

.research {
	background: white;
}

.research-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
	align-items: start;
}

.research-text h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: rgb(45, 55, 72);
}

.research-text p {
	color: rgb(74, 85, 104);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.research-text ul {
	margin-bottom: 2rem;
	padding-left: 1.5rem;
}

.research-text li {
	color: rgb(74, 85, 104);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.research-stats {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.stat-card {
	background: var(--mason-green);
	color: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	border: 2px solid var(--mason-gold);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.9;
}

.footer {
	background: rgb(45, 55, 72);
	color: white;
	padding: 3rem 0px 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section p {
	color: rgb(160, 174, 192);
	line-height: 1.6;
}

.footer-section p a {
	color: rgb(160, 174, 192);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section p a:hover {
	color: white;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: rgb(160, 174, 192);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgb(74, 85, 104);
	padding-top: 1rem;
	text-align: center;
	color: rgb(160, 174, 192);
}

@media (max-width: 768px) {

	.btn,
	.tab-btn,
	.mobile-menu-toggle,
	.nav-link {
		min-height: 44px;
		min-width: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		min-height: 44px;
		padding: 0.75rem;
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.demo-container {
		gap: 2rem;
		grid-template-columns: 1fr;
	}

	.research-content {
		gap: 2rem;
		grid-template-columns: 1fr;
	}

	.demo-form {
		max-width: 600px;
		justify-self: center;
	}
}

@media (max-width: 768px) {
	.algorithms-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5rem;
	}

	.demo-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.demo-form {
		max-width: none;
		width: 100%;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0px;
	}

	.comparison-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.comparison-tabs {
		width: 100%;
		justify-content: center;
	}

	.side-by-side-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.research-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.research-stats {
		flex-flow: wrap;
		justify-content: center;
	}

	.stat-card {
		flex: 1 1 0%;
		min-width: 200px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0px 15px;
	}

	.algorithms-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.algorithm-card {
		padding: 1.5rem;
		width: 100%;
	}

	.demo-form {
		padding: 1.5rem;
		margin: 0px;
	}

	.comparison-tabs {
		flex-wrap: wrap;
		gap: 0.25rem;
	}

	.tab-btn {
		flex: 1 1 0%;
		min-width: 80px;
		padding: 0.4rem 0.5rem;
		font-size: 0.9rem;
	}

	.result-card {
		padding: 1rem;
	}

	.code-block {
		margin: 1rem 0px;
	}

	.code-content {
		padding: 1rem;
	}

	.code-content pre {
		font-size: 0.8rem;
		overflow-x: auto;
	}

	.research-stats {
		flex-direction: column;
	}

	.stat-card {
		min-width: auto;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}
}

@media (max-width: 360px) {
	.hero-title {
		font-size: 1.75rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.demo-form,
	.result-card,
	.algorithm-card {
		padding: 1rem;
	}

	.comparison-header {
		padding: 1rem;
	}

	.comparison-content {
		padding: 1rem;
	}

	.tab-btn {
		padding: 0.3rem 0.4rem;
		font-size: 0.8rem;
	}
}

#outputLength {
	width: 120px;
	margin-top: 0.25em;
}

#chunkingOptions {
	margin-top: 0.5em;
	background: rgb(249, 250, 251);
	border-radius: 6px;
	padding: 0.75em 1em;
	border-left: 3px solid rgb(66, 153, 225);
}

#chunkingOptions label {
	font-weight: 500;
	margin-bottom: 0.25em;
}

#chunkingOptions input[type="number"]:disabled {
	background: rgb(226, 232, 240);
	color: rgb(160, 174, 192);
	cursor: not-allowed;
}

#chunkingOptions input[type="radio"] {
	accent-color: rgb(66, 153, 225);
}

#chunkingOptions input[type="number"] {
	margin-left: 0.5em;
	margin-right: 1em;
	width: 96px;
}

.status-badge.status-detected {
	background: var(--mason-green);
	color: white;
}

.status-badge.status-not-detected {
	background: rgb(229, 62, 62);
	color: white;
}

.score-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	background: var(--mason-green);
	color: white;
}

.quality-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quality-badge.quality-excellent {
	background: var(--mason-green);
	color: white;
}

.quality-badge.quality-good {
	background: var(--mason-gold);
	color: rgb(45, 55, 72);
}

.quality-badge.quality-poor {
	background: rgb(229, 62, 62);
	color: white;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
}

.stat-card,
.status-badge.status-detected,
.score-badge,
.quality-badge.quality-excellent,
.tab-btn.active {
	border: 2px solid var(--mason-gold);
}

.example-section {
	background: rgb(247, 250, 252);
	padding: 4rem 0px;
}

.example-section .section-title {
	color: var(--mason-green);
}

.example-container {
	max-width: 1200px;
	margin: 0px auto;
	padding: 0px 20px;
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.example-card {
	background: var(--white);
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
	margin-bottom: 2rem;
	overflow: hidden;
	border: 2px solid transparent;
	transition: 0.3s;
	display: flex;
	flex-direction: column;
}

.example-card:hover {
	transform: translateY(-4px);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 30px;
}

.example-header {
	background: linear-gradient(135deg, var(--mason-green) 0%, #006b48 100%);
	padding: 1.25rem 1.75rem;
	border-bottom: 3px solid var(--mason-gold);
}

.example-header.non-watermarked {
	background: linear-gradient(135deg, rgb(74, 85, 104) 0%, rgb(45, 55, 72) 100%);
	border-bottom: 3px solid var(--mason-gold);
}

.example-header.watermarked {
	background: linear-gradient(135deg, var(--mason-green) 0%, #006b48 100%);
	border-bottom: 3px solid var(--mason-gold);
}

.example-header h3,
.example-header h4 {
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.example-header i {
	font-size: 1.5rem;
	color: var(--mason-gold);
}

.example-content {
	padding: 1.75rem;
	color: var(--logo-black);
	line-height: 1.8;
	flex: 1 1 0%;
}

.example-content p {
	margin-bottom: 1rem;
	color: rgb(45, 55, 72);
	text-align: left;
}

.example-content pre {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	padding: 1rem;
	font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgb(31, 41, 51);
	white-space: pre;
	overflow-x: auto;
	word-break: normal;
	tab-size: 4;
	margin: 0px;
	max-width: 100%;
}

.example-content p:last-child {
	margin-bottom: 0px;
}

.example-content strong {
	color: var(--mason-green);
	font-weight: 600;
	display: block;
	margin-bottom: 0.75rem;
	font-size: 1.1rem;
}

.example-header.non-watermarked+.example-content {
	background: linear-gradient(rgb(232, 234, 240) 0%, rgb(240, 242, 245) 100%);
	border-left: 4px solid rgb(108, 117, 125);
}

.example-header.watermarked+.example-content {
	background: linear-gradient(rgb(212, 244, 221) 0%, rgb(230, 247, 237) 100%);
	border-left: 4px solid var(--mason-green);
}

.binary-code {
	display: inline-block;
	font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
	font-size: 1.1rem;
	background: rgb(247, 250, 252);
	padding: 1rem 1.5rem;
	border-radius: 8px;
	border: 2px solid var(--mason-green);
	color: var(--mason-green);
	font-weight: 600;
	letter-spacing: 2px;
	word-break: break-all;
}

.example-comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.example-results {
	background: var(--white);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border: 2px solid var(--mason-gold);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.example-subsection {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.example-heading {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--mason-green);
	text-align: left;
	margin: 0px;
}

.example-subtitle {
	font-size: 0.9rem;
	color: rgb(71, 85, 105);
	max-width: none;
	margin: 0px;
	line-height: 1.6;
}

.result-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	background: var(--white);
	border-radius: 8px;
	border-left: 4px solid var(--mason-green);
	box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
	transition: 0.3s;
}

.result-item:hover {
	transform: translateX(4px);
	box-shadow: rgba(0, 82, 57, 0.15) 0px 4px 12px;
}

.result-item:last-child {
	border-left-color: var(--mason-green);
}

.result-item:last-child:hover {
	box-shadow: rgba(0, 82, 57, 0.15) 0px 4px 12px;
}

.result-label {
	font-weight: 600;
	color: var(--mason-green);
	font-size: 1.1rem;
	white-space: nowrap;
	margin-right: 1.5rem;
}

.result-value {
	font-weight: 500;
	color: rgb(45, 55, 72);
}

.result-value code {
	font-family: Monaco, Menlo, "Ubuntu Mono", monospace;
	font-size: 1rem;
	background: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 6px;
	border: 2px solid var(--mason-green);
	color: var(--mason-green);
	word-break: break-all;
	white-space: normal;
	display: inline-block;
	font-weight: 600;
	letter-spacing: 1px;
}

.accuracy-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--mason-green) 0%, #006b48 100%);
	color: var(--white);
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: rgba(0, 82, 57, 0.3) 0px 4px 15px;
	transition: 0.3s;
}

.accuracy-badge:hover {
	transform: scale(1.05);
	box-shadow: rgba(0, 82, 57, 0.4) 0px 6px 20px;
}

.bit-error {
	color: rgb(229, 62, 62);
	font-weight: 900;
	background: rgba(229, 62, 62, 0.1);
	padding: 0px 2px;
	border-radius: 2px;
}

@media screen and (max-width: 1024px) {
	.example-comparison {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	.example-section {
		padding: 3rem 0px;
	}

	.example-header {
		padding: 1rem 1.25rem;
	}

	.example-header h3,
	.example-header h4 {
		font-size: 1.2rem;
	}

	.example-content {
		padding: 1.25rem;
	}

	.example-content pre {
		font-size: 0.85rem;
	}

	.binary-code {
		font-size: 0.9rem;
		padding: 0.75rem 1rem;
		letter-spacing: 1px;
	}

	.example-results {
		padding: 1.5rem;
	}

	.result-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.accuracy-badge {
		font-size: 1.25rem;
		padding: 0.4rem 1.25rem;
	}
}

@media screen and (max-width: 480px) {

	.example-header h3,
	.example-header h4 {
		font-size: 1.1rem;
		gap: 0.5rem;
	}

	.example-header i {
		font-size: 1.25rem;
	}

	.example-content {
		padding: 1rem;
	}

	.example-content pre {
		font-size: 0.8rem;
	}

	.binary-code {
		font-size: 0.8rem;
		padding: 0.6rem 0.8rem;
		letter-spacing: 0.5px;
	}

	.result-item {
		padding: 0.75rem 1rem;
	}

	.result-label {
		font-size: 1rem;
	}

	.result-value code {
		font-size: 0.9rem;
		padding: 0.4rem 0.8rem;
	}
}

/* About Section Styles */
.about {
	background: #f8fafc;
	padding: 6rem 0;
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--logo-black);
	font-size: 1.1rem;
	line-height: 1.8;
        text-align: left;
}

.team-section h3 {
	color: var(--mason-green);
	margin-bottom: 2rem;
	font-size: 1.75rem;
	font-weight: 700;
}

.team-section {
	margin-top: 4rem;
	text-align: center;
}

.team-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.team-list li {
	background: var(--white);
	padding: 1.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	border: 1px solid #e2e8f0;
	flex: 1 1 250px;
	max-width: 300px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-list li:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-color: var(--mason-gold);
}

.team-list strong {
	display: block;
	color: var(--mason-green);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.team-list span {
	color: var(--secondary-gray);
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.about {
		padding: 3rem 0;
	}

	.about-text p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.team-list {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.team-list li {
		width: 100%;
		max-width: 100%;
		padding: 1rem;
	}
}
/* Algorithm Tabs */
.algorithm-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.alg-tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--mason-green);
    background: transparent;
    color: var(--mason-green);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.alg-tab-btn:hover {
    background: rgba(0, 82, 57, 0.1);
}

.alg-tab-btn.active {
    background: var(--mason-green);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.alg-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.alg-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .alg-tab-btn {
        width: 100%;
        text-align: center;
    }
}


/* Additional Example Styles */
.example-subsection:not(:first-child) {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.payload-bits, .perplexity {
    font-size: 0.9em;
    font-weight: 400;
    color: var(--white);
    opacity: 0.9;
    margin-left: 0.5rem;
}

.capacity-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--mason-green) 0%, #006b48 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: rgba(0, 82, 57, 0.3) 0px 4px 15px;
    transition: 0.3s;
}

.capacity-badge:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 82, 57, 0.4) 0px 6px 20px;
}

@media (max-width: 768px) {
    .example-subsection:not(:first-child) {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    
    .example-header h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .payload-bits, .perplexity {
        margin-left: 0;
        font-size: 0.85em;
    }
}

