/*
Theme Name: Neutral Verify
Theme URI: https://example.com/neutral-verify
Author: Neutral Verify
Author URI: https://example.com
Description: A clean standalone WordPress theme designed for product verification landing pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neutral-verify
Tags: custom-logo, one-column, responsive-layout, accessibility-ready
*/

:root {
	--nv-primary: #116d65;
	--nv-primary-dark: #0b554f;
	--nv-primary-light: #e8f5f3;
	--nv-text: #17252a;
	--nv-muted: #66767d;
	--nv-border: #dbe6e8;
	--nv-background: #f3f8f8;
	--nv-surface: #ffffff;
	--nv-success: #0b8f67;
	--nv-shadow: 0 24px 70px rgba(26, 61, 65, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--nv-text);
	background: var(--nv-background);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

button,
input {
	font: inherit;
}

img,
svg {
	display: block;
}

a {
	color: inherit;
}

.site-header {
	position: relative;
	z-index: 20;
	background: rgba(255, 255, 255, 0.88);
	border-bottom: 1px solid rgba(217, 230, 232, 0.9);
	backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer__inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.site-header__inner {
	min-height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-title {
	margin: 0;
	font-size: 1.04rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-description {
	display: none;
}

.custom-logo {
	width: auto;
	max-height: 42px;
}

.primary-navigation {
	display: none;
}

.nv-landing {
	position: relative;
	min-height: calc(100vh - 74px);
	padding: 92px 20px 64px;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 15%, rgba(17, 109, 101, 0.12), transparent 32%),
		radial-gradient(circle at 92% 20%, rgba(70, 147, 188, 0.11), transparent 28%),
		linear-gradient(145deg, #f7fbfb 0%, #eff7f7 48%, #f7fafc 100%);
}

.nv-decoration {
	position: absolute;
	border-radius: 999px;
	filter: blur(2px);
	pointer-events: none;
}

.nv-decoration--one {
	top: 120px;
	right: -160px;
	width: 380px;
	height: 380px;
	background: rgba(17, 109, 101, 0.07);
}

.nv-decoration--two {
	bottom: -180px;
	left: -130px;
	width: 420px;
	height: 420px;
	background: rgba(72, 142, 178, 0.07);
}

.nv-landing__container {
	position: relative;
	z-index: 2;
	width: min(1180px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 490px);
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.nv-intro {
	max-width: 650px;
}

.nv-badge {
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 24px;
	padding: 8px 13px;
	color: var(--nv-primary);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(17, 109, 101, 0.16);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.075em;
	text-transform: uppercase;
	box-shadow: 0 8px 25px rgba(33, 80, 84, 0.06);
}

.nv-badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nv-success);
	box-shadow: 0 0 0 5px rgba(11, 143, 103, 0.12);
}

.nv-shield {
	width: 76px;
	height: 76px;
	margin-bottom: 28px;
	display: grid;
	place-items: center;
	color: var(--nv-primary);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 109, 101, 0.13);
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(18, 77, 75, 0.1);
}

.nv-shield svg {
	width: 45px;
	height: 45px;
	fill: rgba(17, 109, 101, 0.12);
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nv-landing__title {
	max-width: 690px;
	margin: 0;
	font-size: clamp(3rem, 6vw, 5.7rem);
	line-height: 0.98;
	letter-spacing: -0.065em;
	font-weight: 850;
}

.nv-landing__description {
	max-width: 610px;
	margin: 25px 0 0;
	color: var(--nv-muted);
	font-size: clamp(1.03rem, 2vw, 1.18rem);
	line-height: 1.75;
}

.nv-features {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
}

.nv-feature {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #43545a;
	font-size: 0.93rem;
	font-weight: 650;
}

.nv-feature__icon {
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	color: #ffffff;
	background: var(--nv-primary);
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 900;
}

.nv-verification-card {
	padding: clamp(25px, 4vw, 38px);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(215, 229, 231, 0.95);
	border-radius: 28px;
	box-shadow: var(--nv-shadow);
	backdrop-filter: blur(20px);
}

.nv-verification-card__header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e7eeee;
}

.nv-card-icon {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	color: var(--nv-primary);
	background: var(--nv-primary-light);
	border-radius: 16px;
}

.nv-card-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nv-verification-card__header h2 {
	margin: 0;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}

.nv-verification-card__header p {
	margin: 3px 0 0;
	color: var(--nv-muted);
	font-size: 0.9rem;
}

.nv-verification-form {
	margin-top: 28px;
}

.nv-verification-form label {
	display: block;
	margin-bottom: 9px;
	font-size: 0.91rem;
	font-weight: 750;
}

.nv-input-wrap {
	position: relative;
}

.nv-input-wrap svg {
	position: absolute;
	top: 50%;
	left: 16px;
	width: 22px;
	height: 22px;
	transform: translateY(-50%);
	fill: none;
	stroke: #7c8d93;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

.nv-input-wrap input {
	width: 100%;
	height: 58px;
	padding: 0 17px 0 50px;
	color: var(--nv-text);
	background: #f9fbfb;
	border: 1px solid var(--nv-border);
	border-radius: 14px;
	outline: none;
	font-size: 1rem;
	font-weight: 650;
	letter-spacing: 0.075em;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nv-input-wrap input::placeholder {
	color: #9aa7ac;
	font-weight: 500;
}

.nv-input-wrap input:focus {
	background: #ffffff;
	border-color: var(--nv-primary);
	box-shadow: 0 0 0 4px rgba(17, 109, 101, 0.11);
}

.nv-verify-button {
	width: 100%;
	min-height: 58px;
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--nv-primary), var(--nv-primary-dark));
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 850;
	letter-spacing: 0.065em;
	box-shadow: 0 14px 28px rgba(17, 109, 101, 0.24);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.nv-verify-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(17, 109, 101, 0.31);
}

.nv-verify-button:focus-visible {
	outline: 3px solid rgba(17, 109, 101, 0.22);
	outline-offset: 3px;
}

.nv-verify-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nv-card-note {
	margin-top: 20px;
	padding: 15px;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: #58686e;
	background: #f5f9f9;
	border: 1px solid #e3eded;
	border-radius: 14px;
}

.nv-card-note svg {
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	margin-top: 1px;
	fill: none;
	stroke: var(--nv-primary);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nv-card-note p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.55;
}

.nv-help {
	position: relative;
	z-index: 2;
	width: min(1180px, 100%);
	margin: 78px auto 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nv-help__item {
	display: flex;
	gap: 17px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.63);
	border: 1px solid rgba(214, 228, 230, 0.9);
	border-radius: 18px;
	backdrop-filter: blur(12px);
}

.nv-help__item > span {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: var(--nv-primary);
	background: var(--nv-primary-light);
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 850;
}

.nv-help__item h3 {
	margin: 0;
	font-size: 0.98rem;
}

.nv-help__item p {
	margin: 4px 0 0;
	color: var(--nv-muted);
	font-size: 0.84rem;
	line-height: 1.55;
}

.site-footer {
	background: #142125;
	color: rgba(255, 255, 255, 0.74);
}

.site-footer__inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 0;
	text-align: center;
	font-size: 0.88rem;
}

.site-footer a {
	color: #ffffff;
}

@media (max-width: 900px) {
	.nv-landing {
		padding-top: 60px;
	}

	.nv-landing__container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.nv-intro {
		max-width: 720px;
		text-align: center;
		margin: 0 auto;
	}

	.nv-badge,
	.nv-shield {
		margin-left: auto;
		margin-right: auto;
	}

	.nv-landing__description {
		margin-left: auto;
		margin-right: auto;
	}

	.nv-features {
		justify-content: center;
	}

	.nv-verification-card {
		width: min(560px, 100%);
		margin: 0 auto;
	}

	.nv-help {
		grid-template-columns: 1fr;
		max-width: 680px;
	}
}

@media (max-width: 600px) {
	.site-header__inner,
	.site-footer__inner {
		width: min(100% - 28px, 1180px);
	}

	.site-header__inner {
		min-height: 64px;
	}

	.nv-landing {
		min-height: calc(100vh - 64px);
		padding: 44px 14px 42px;
	}

	.nv-shield {
		width: 64px;
		height: 64px;
		border-radius: 20px;
	}

	.nv-shield svg {
		width: 38px;
		height: 38px;
	}

	.nv-landing__title {
		font-size: clamp(2.55rem, 14vw, 4rem);
	}

	.nv-landing__description {
		font-size: 1rem;
		line-height: 1.65;
	}

	.nv-features {
		flex-direction: column;
		align-items: center;
	}

	.nv-verification-card {
		padding: 23px 18px;
		border-radius: 22px;
	}

	.nv-verification-card__header {
		align-items: flex-start;
	}

	.nv-input-wrap input {
		height: 56px;
		font-size: 0.9rem;
		letter-spacing: 0.04em;
	}

	.nv-verify-button {
		min-height: 56px;
	}

	.nv-help {
		margin-top: 48px;
	}

	.nv-help__item {
		padding: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		transition: none !important;
	}
}