html {
	scroll-behavior: smooth;
}

body {
	background-color: #f8f9fa;
	color: #191c1d;
	overflow-x: hidden;
}

.brand-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand-logo {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.neo-brutal-shadow {
	box-shadow: 6px 6px 0 0 #000000;
}

.neo-brutal-shadow-hover:hover {
	box-shadow: 2px 2px 0 0 #000000;
	transform: translate(4px, 4px);
}

.scanline {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.02) 50%);
	background-size: 100% 4px;
	pointer-events: none;
}

.grid-bg {
	background-image: linear-gradient(#e1e3e4 1px, transparent 1px), linear-gradient(90deg, #e1e3e4 1px, transparent 1px);
	background-size: 40px 40px;
}

.simple-page {
	min-height: 100vh;
	background: radial-gradient(circle at top right, #d8ffd5 0%, #f8f9fa 35%, #f8f9fa 100%);
	padding: 32px 16px;
	font-family: Inter, sans-serif;
}

.simple-shell {
	max-width: 980px;
	margin: 0 auto;
	background: #ffffff;
	border: 3px solid #000000;
	box-shadow: 8px 8px 0 0 #000000;
	padding: 24px;
}

.simple-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 2px solid #000000;
	margin-bottom: 24px;
}

.simple-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Archivo Narrow", sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
}

.simple-nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.simple-link {
	display: inline-block;
	text-decoration: none;
	color: #000000;
	font-weight: 700;
	border: 2px solid #000000;
	padding: 8px 12px;
	background: #00ff41;
}

.simple-link:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 0 #000000;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.product-card {
	border: 2px solid #000000;
	padding: 18px;
	background: #f3f4f5;
}

.product-card h2 {
	margin: 0 0 8px;
	font-family: "Archivo Narrow", sans-serif;
	font-size: 2rem;
	line-height: 1;
}
button{
font-family: "Archivo Narrow", sans-serif;	
}

.product-card p {
	margin: 0 0 16px;
	color: #2e3132;
	font-size: 0.98rem;
	line-height: 1.5;
}

.thank-you-wrap {
	text-align: center;
	padding: 60px 16px;
}

.thank-you-wrap h1 {
	font-family: "Archivo Narrow", sans-serif;
	font-size: clamp(2.2rem, 6vw, 4rem);
	margin: 0 0 10px;
	line-height: 1;
}

.thank-you-wrap p {
	font-size: 1.08rem;
	color: #444748;
	margin: 0 0 24px;
}

.scope-panel {
	border: 4px solid #000000;
	background:
		radial-gradient(circle at top left, rgba(0, 255, 65, 0.22), transparent 40%),
		linear-gradient(135deg, #ffffff 0%, #eef8ee 100%);
	box-shadow: 10px 10px 0 0 #000000;
	padding: 32px;
}

.scope-panel__glow {
	position: absolute;
	inset: auto -12% -28% auto;
	width: 240px;
	height: 240px;
	background: rgba(0, 255, 65, 0.12);
	filter: blur(18px);
	border-radius: 9999px;
	pointer-events: none;
}

.scope-panel__kicker {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	margin-bottom: 10px;
	background: #000000;
	color: #00ff41;
	font-family: Geist, sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.scope-panel__pill {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 2px solid #000000;
	background: #00ff41;
	font-family: Geist, sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	box-shadow: 4px 4px 0 0 #000000;
}

.scope-card {
	border: 2px solid #000000;
	padding: 18px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(6px);
	min-height: 100%;
}

.scope-card--good {
	box-shadow: inset 0 0 0 1px rgba(0, 255, 65, 0.25);
}

.scope-card--warn {
	box-shadow: inset 0 0 0 1px rgba(186, 26, 26, 0.16);
}

.scope-card__label {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 6px 10px;
	border: 1px solid #000000;
	background: #f8f9fa;
	font-family: Geist, sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.scope-card__text {
	margin: 0;
	color: #191c1d;
	font-size: 1rem;
	line-height: 1.65;
}

.scope-panel__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 2px dashed rgba(0, 0, 0, 0.35);
	font-family: Geist, sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: #444748;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.income-card {
	background: linear-gradient(180deg, #ffffff 0%, #f6fff6 100%);
	box-shadow: 8px 8px 0 0 #000000;
	overflow: hidden;
}

.income-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 255, 65, 0.08), transparent 55%);
	pointer-events: none;
}

.income-card__icon {
	font-variation-settings: "FILL" 1;
}

.income-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
}

.income-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border: 1px solid #000000;
	background: #00ff41;
	font-family: Geist, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.scope-card__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 6px 10px;
	border: 1px solid #000000;
	background: #f8f9fa;
	font-family: Geist, sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.scope-card__label--good {
	background: #e8ffe9;
	color: #00530e;
}

.scope-card__label--warn {
	background: #ffebeb;
	color: #93000a;
}

.scope-card__icon {
	font-size: 1.1rem;
	width: 1.1rem;
	height: 1.1rem;
	line-height: 1;
	font-variation-settings: "FILL" 1;
}

.scope-card--good {
	box-shadow: inset 0 0 0 1px rgba(0, 255, 65, 0.25);
}

.scope-card--warn {
	box-shadow: inset 0 0 0 1px rgba(186, 26, 26, 0.16);
}
