:root {
	--color-primary: #00573f;
	--color-primary-dark: #003f30;
	--color-primary-soft: #e5f4ed;
	--color-dark: #0f172a;
	--color-accent: #22c55e;
	--color-light: #f8fafc;
	--color-gray: #64748b;
	--color-border: #dbe5e1;
	--color-white: #ffffff;
	--shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
	--shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
	--shadow-header: 0 10px 30px rgba(15, 23, 42, 0.08);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 12px;
	--container: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 12% 10%, rgba(34, 197, 94, 0.14), transparent 28rem),
		linear-gradient(180deg, #ffffff 0%, var(--color-light) 42%, #eef7f1 100%);
}

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

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

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--color-dark);
	font-weight: 750;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	max-width: 760px;
}

h2 {
	font-size: clamp(1.8rem, 3vw, 2.65rem);
	max-width: 720px;
}

p {
	color: var(--color-gray);
	max-width: 68ch;
}

.container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
}

.section {
	position: relative;
	padding: 56px 0;
	overflow: hidden;
}

.site-main {
	min-height: 60vh;
}

.button,
.wp-block-button__link,
.section a[href]:not(.site-title) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 10px;
	background: var(--color-accent);
	color: #052e1a;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 14px 28px rgba(34, 197, 94, 0.28);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button--secondary,
.section a.button--secondary[href] {
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow: none;
	backdrop-filter: blur(12px);
}

.button:hover,
.wp-block-button__link:hover,
.section a[href]:not(.site-title):hover {
	transform: translateY(-2px);
	background: #4ade80;
	box-shadow: 0 18px 34px rgba(34, 197, 94, 0.34);
}

.button--secondary:hover,
.section a.button--secondary[href]:hover {
	background: rgba(255, 255, 255, 0.18);
	color: var(--color-white);
	box-shadow: none;
}

:focus-visible {
	outline: 3px solid rgba(34, 197, 94, 0.65);
	outline-offset: 4px;
}

::selection {
	background: rgba(34, 197, 94, 0.28);
}
