:root {
	--background: #f8fafc;
	--primary: #0f172a;
	--secondary: #2563eb;
	--accent: #f97316;
	--success: #10b981;
	--text: #1e293b;
	--muted: #64748b;
	--card: #ffffff;
	--border: #e2e8f0;
	--hover: #1d4ed8;
	--shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 12px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.09), transparent 35%),
		radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 30%),
		var(--background);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background: rgba(248, 250, 252, 0.88);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.compact-header {
	background: rgba(248, 250, 252, 0.95);
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary);
}

.brand-mark {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.site-nav a {
	color: var(--muted);
	font-weight: 500;
	transition: color 0.2s ease;
}

.site-nav a:hover {
	color: var(--primary);
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 5rem 0 4rem;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2rem;
	align-items: center;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.cta-card h2,
.panel-card h2 {
	color: var(--primary);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.hero-copy h1 {
	font-size: clamp(2.8rem, 6vw, 5.2rem);
	margin: 1rem 0 1.25rem;
}

.eyebrow,
.section-label,
.panel-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--secondary);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hero-subtitle,
.section-copy p,
.feature-card p,
.mini-card p,
.panel-card p,
.domain-card p,
.cta-card p,
.process-list,
.faq-answer,
.page-note,
.meta-copy {
	color: var(--muted);
}

.hero-subtitle {
	font-size: 1.06rem;
	max-width: 58ch;
}

.hero-actions {
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin: 2rem 0 2.1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.9rem 1.25rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover {
	background: var(--hover);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.8);
	color: var(--primary);
	border-color: var(--border);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hero-stats div {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow);
}

.hero-stats strong {
	display: block;
	color: var(--primary);
	font-size: 1.2rem;
}

.hero-stats span {
	color: var(--muted);
	font-size: 0.9rem;
}

.hero-panel {
	position: relative;
}

.panel-card,
.feature-card,
.mini-card,
.cta-card,
.domain-card,
.faq-item,
.summary-card,
.table-shell,
.stats-card,
.assessment-panel {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.panel-card {
	padding: 1.6rem;
}

.panel-card h2 {
	font-size: 1.7rem;
	margin: 1rem 0 0.75rem;
}

.check-list {
	list-style: none;
	display: grid;
	gap: 0.75rem;
	margin-top: 1.2rem;
}

.check-list li::before {
	content: "•";
	color: var(--accent);
	font-weight: 700;
	margin-right: 0.5rem;
}

.hero-glow {
	position: absolute;
	inset: auto;
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	filter: blur(65px);
	opacity: 0.45;
	pointer-events: none;
}

.hero-glow-left {
	left: -4rem;
	top: 3rem;
	background: rgba(37, 99, 235, 0.15);
}

.hero-glow-right {
	right: -4rem;
	top: 6rem;
	background: rgba(249, 115, 22, 0.18);
}

.content-section {
	padding: 2rem 0 4rem;
}

.alt-section {
	background: rgba(255, 255, 255, 0.55);
	border-block: 1px solid rgba(226, 232, 240, 0.65);
}

.section-grid,
.card-grid,
.domain-grid {
	display: grid;
	gap: 1.25rem;
}

.two-col {
	grid-template-columns: 0.9fr 1.1fr;
	align-items: start;
}

.three-col {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-heading h1,
.section-heading h2,
.cta-card h2,
.question-title,
.domain-hero h1 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	margin-top: 0.7rem;
}

.section-copy,
.section-heading p {
	max-width: 64ch;
}

.feature-card,
.mini-card,
.domain-card,
.faq-item,
.stats-card {
	padding: 1.45rem;
}

.feature-icon,
.domain-icon {
	display: inline-flex;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.1);
	color: var(--secondary);
	font-size: 1.2rem;
	font-weight: 700;
}

.feature-card h3,
.mini-card h3,
.domain-card h2,
.faq-question,
.stats-card strong,
.table-shell h2 {
	color: var(--primary);
}

.feature-card h3,
.mini-card h3,
.domain-card h2 {
	margin: 1rem 0 0.55rem;
	font-size: 1.15rem;
}

.process-list {
	display: grid;
	gap: 0.8rem;
	padding-left: 1.2rem;
}

.faq-list {
	display: grid;
	gap: 0.9rem;
}

.faq-item {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 0.5rem 1rem;
	text-align: left;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
	transform: translateY(-1px);
	border-color: rgba(37, 99, 235, 0.35);
}

.faq-answer {
	grid-column: 1 / -1;
	display: none;
	padding-top: 0.35rem;
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-toggle {
	color: var(--secondary);
	font-size: 1.4rem;
	font-weight: 600;
}

.cta-section {
	padding-bottom: 5rem;
}

.cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.75rem;
}

.domain-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.domain-card {
	display: grid;
	gap: 0.5rem;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.domain-card:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.3);
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.11);
}

.domain-meta {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.4rem;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.95rem;
}

.domain-meta strong {
	color: var(--primary);
}

.content-shell {
	padding-bottom: 4rem;
}

.domain-hero {
	padding-top: 3.5rem;
}

.table-shell {
	padding: 1.5rem;
	overflow: hidden;
}

.auth-card {
	max-width: 760px;
	margin: 3rem auto 0;
	padding: 2rem;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.auth-card h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 1rem 0 0.5rem;
	color: var(--primary);
}

.auth-tools {
	grid-template-columns: 1fr auto;
	margin-top: 1.25rem;
}

.auth-tools input {
	width: 100%;
	min-height: 46px;
	border-radius: 14px;
	border: 1px solid var(--border);
	padding: 0.75rem 0.9rem;
	background: #fff;
	color: var(--text);
}

.table-shell h2 {
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.table-tools {
	display: grid;
	grid-template-columns: 1.5fr 1fr auto;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.table-tools input,
.table-tools select {
	width: 100%;
	min-height: 46px;
	border-radius: 14px;
	border: 1px solid var(--border);
	padding: 0.75rem 0.9rem;
	background: #fff;
	color: var(--text);
}

.table-tools button {
	min-height: 46px;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
}

.admin-table th,
.admin-table td {
	padding: 0.9rem 0.8rem;
	text-align: left;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}

.admin-table th {
	color: var(--primary);
	font-size: 0.9rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--secondary);
	font-size: 0.82rem;
	font-weight: 600;
}

.pill.success {
	background: rgba(16, 185, 129, 0.12);
	color: var(--success);
}

.empty-state,
.page-note {
	padding: 1rem 0;
}

.fade-in {
	animation: fadeInUp 0.7s ease both;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(16px);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.hero-grid,
	.two-col,
	.domain-grid,
	.three-col,
	.four-col {
		grid-template-columns: 1fr;
	}

	.cta-card,
	.nav-shell {
		flex-direction: column;
		align-items: flex-start;
	}

	.table-tools {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.hero-section {
		padding-top: 3.5rem;
	}

	.hero-copy h1,
	.section-heading h1,
	.section-heading h2,
	.cta-card h2,
	.domain-hero h1 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}

	.site-nav {
		gap: 1rem;
	}

	.btn {
		width: 100%;
	}

	.hero-actions {
		flex-direction: column;
	}

	.admin-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* Access Gate Card Styles */
.access-gate-card {
	max-width: 500px;
	margin: 2.5rem auto;
	padding: 2.5rem 2rem;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.gate-icon-shell {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.08);
	color: var(--secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.access-gate-card h3 {
	font-size: 1.4rem;
	color: var(--primary);
	font-weight: 700;
}

.access-gate-card p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.5;
}

.hidden-gate {
	display: none !important;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-6px); }
	75% { transform: translateX(6px); }
}