:root {
	--pink: #f54097;
	--purple: #3f26d9;
	--green: #6dc910;
	--leaf: #8be04e;
	--yellow: #fed23f;
	--cyan: #48d6d2;
	--ink: #080d14;
	--deep: #050231;
	--black: #000;
	--white: #fff;
	--text: rgba(255, 255, 255, .8);
	--muted: rgba(255, 255, 255, .62);
	--muted-border: rgba(255, 255, 255, .12);
	--card-radius: 8px;
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	src: url("../fonts/inter-normal-latin.woff2") format("woff2");
	font-display: swap;
}

@font-face {
	font-family: "Russo One";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/russo-one-normal-latin-400.woff2") format("woff2");
	font-display: swap;
}

@font-face {
	font-family: "Khand";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/khand-normal-latin-600.woff2") format("woff2");
	font-display: swap;
}

* {
	box-sizing: border-box;
}

html {
	max-width: 100%;
	overflow-x: clip;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	background: var(--ink);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.734;
}

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

a {
	color: var(--pink);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	transform: translateY(-150%);
	padding: 10px 14px;
	background: var(--white);
	color: var(--ink);
	text-decoration: none;
}

.skip-link:focus {
	transform: translateY(0);
}

.sg-header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 30;
	display: block;
	grid-column: auto;
	grid-template-columns: none;
	gap: 0;
	align-items: initial;
	min-height: 0;
	margin: 0;
	padding: 16px clamp(14px, 4vw, 54px);
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sg-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 16px 18px;
	border-radius: 22px;
	background: rgba(5, 2, 49, .18);
	box-shadow: none;
	backdrop-filter: blur(8px);
}

.sg-brand {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	color: var(--white);
	text-decoration: none;
}

.sg-brand img {
	width: 170px;
	flex: 0 0 auto;
}

.sg-brand span {
	display: grid;
	gap: 3px;
	min-width: 130px;
}

.sg-brand strong {
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.8px;
	line-height: 1;
	text-transform: uppercase;
}

.sg-brand small {
	color: var(--white);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 18px;
	line-height: 1;
}

.sg-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.sg-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 2px 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, .84);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: color .22s ease, text-shadow .22s ease;
}

.sg-nav__group {
	position: relative;
	color: rgba(255, 255, 255, .84);
}

.sg-nav__group summary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	padding: 2px 0;
	color: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	list-style: none;
	cursor: pointer;
	transition: color .22s ease, text-shadow .22s ease;
}

.sg-nav__group summary::-webkit-details-marker {
	display: none;
}

.sg-nav__group summary::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .75;
}

.sg-nav a:hover,
.sg-nav a:focus-visible,
.sg-nav a.is-active,
.sg-nav__group:hover summary,
.sg-nav__group:focus-within summary,
.sg-nav__group.is-active summary {
	color: var(--white);
	text-shadow: 0 0 16px rgba(109, 201, 16, .32);
}

.sg-nav__submenu {
	position: absolute;
	top: calc(100% + 13px);
	right: 0;
	z-index: 20;
	display: grid;
	gap: 2px;
	min-width: 190px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 8px;
	background: rgba(5, 2, 49, .9);
	box-shadow: 0 18px 54px rgba(0, 0, 0, .38);
	backdrop-filter: blur(10px);
}

.sg-nav__submenu a {
	justify-content: flex-start;
	min-height: 36px;
	padding: 8px 10px;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 9px;
	border: 1px solid var(--muted-border);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	margin: 6px 0;
	background: var(--white);
	transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.hero,
.product-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(8, 13, 20, .76) 0%, rgba(8, 13, 20, .34) 44%, rgba(8, 13, 20, .68) 100%),
		var(--hero-image) center / cover fixed no-repeat;
}

.hero {
	min-height: 78vh;
}

.hero::after,
.product-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	height: 170px;
	background: linear-gradient(180deg, rgba(8, 13, 20, 0) 0%, rgba(0, 0, 0, .18) 50%, rgba(0, 0, 0, .9) 100%);
	pointer-events: none;
}

.hero__noise {
	position: absolute;
	inset: 0;
	opacity: .18;
	background-image:
		linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
	pointer-events: none;
	animation: gridDrift 12s linear infinite;
}

.hero__inner,
.product-hero__inner {
	position: relative;
	z-index: 3;
	display: grid;
	align-items: center;
	gap: clamp(30px, 7vw, 110px);
	max-width: 1440px;
	margin: 0 auto;
	padding-inline: clamp(18px, 5vw, 72px);
}

.hero__inner {
	grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
	min-height: 78vh;
	padding-top: 130px;
	padding-bottom: 96px;
}

.hero__copy,
.product-hero__copy {
	max-width: 660px;
}

.kicker {
	margin: 0 0 12px;
	color: var(--green);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2.8px;
	line-height: 1.4;
	text-transform: uppercase;
}

.hero h1,
.product-hero h1 {
	margin: 0;
	color: var(--white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.05;
	text-shadow: 0 8px 34px rgba(0, 0, 0, .78);
}

.hero h1 {
	font-size: clamp(35px, 3vw, 44px);
}

.product-hero h1 {
	font-size: clamp(36px, 3.8vw, 52px);
}

.downloads-hero .product-hero__copy {
	max-width: 720px;
}

.downloads-hero h1 {
	font-size: clamp(34px, 3.5vw, 48px);
	line-height: 1.08;
}

.hero__text,
.product-hero__copy p:not(.kicker) {
	margin: 24px 0 0;
	max-width: 620px;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(17px, 1.55vw, 20px);
	text-shadow: 0 5px 20px rgba(0, 0, 0, .78);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	border: 2px solid transparent;
	color: var(--white);
	font-size: 16px;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	color: var(--white);
}

.button--primary {
	border-color: var(--pink);
	background: var(--pink);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: #ff5da8;
	border-color: #ff5da8;
}

.button--ghost {
	border-color: rgba(255, 255, 255, .55);
	background: rgba(0, 0, 0, .18);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	border-color: var(--green);
	background: rgba(109, 201, 16, .14);
}

.button--outline {
	border-color: rgba(255, 255, 255, .84);
	background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
	border-color: var(--pink);
	background: rgba(245, 64, 151, .14);
}

.checkout-consent {
	display: inline-grid;
	gap: 7px;
	justify-items: start;
	max-width: min(100%, 320px);
}

.checkout-consent__note {
	display: block;
	max-width: 280px;
	color: rgba(255, 255, 255, .58);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.pricing-card .checkout-consent,
.pricing-empty .checkout-consent,
.download-cta-band .checkout-consent {
	max-width: 100%;
}

.pricing-card .checkout-consent__note,
.pricing-empty .checkout-consent__note,
.download-cta-band .checkout-consent__note {
	max-width: 360px;
}

.hero__visual,
.product-hero__visual {
	position: relative;
	animation: slowFloat 7s ease-in-out infinite;
}

.hero__visual img {
	width: min(100%, 760px);
	padding: 7%;
	filter: drop-shadow(0 34px 50px rgba(0, 0, 0, .5));
}

.pixel-bee {
	position: absolute;
	z-index: 5;
	width: clamp(72px, 8vw, 122px);
	aspect-ratio: 1 / 1;
	pointer-events: none;
	filter:
		drop-shadow(0 16px 18px rgba(0, 0, 0, .42))
		drop-shadow(0 0 20px rgba(255, 217, 61, .25));
}

.pixel-bee img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: pixelated;
	animation: beeBob .72s steps(3, end) infinite;
}

.pixel-bee--hero {
	left: -150px;
	top: 18%;
	animation: beeHeroFlight 20s cubic-bezier(.42, 0, .58, 1) infinite;
	animation-delay: -3.5s;
}

.pixel-bee--cards {
	right: 8%;
	top: -30px;
	width: clamp(64px, 7vw, 104px);
	animation: beeCardHover 6s ease-in-out infinite;
}

.pixel-bee--subpage {
	right: clamp(18px, 8vw, 120px);
	top: 130px;
	width: clamp(64px, 7vw, 110px);
	animation: beeCardHover 6s ease-in-out infinite;
}

.garden-sprites {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
}

.garden-sprite {
	position: absolute;
	width: clamp(48px, 6vw, 104px);
	height: auto;
	object-fit: contain;
	filter:
		drop-shadow(0 10px 14px rgba(0, 0, 0, .28))
		drop-shadow(0 0 14px rgba(109, 201, 16, .05));
	opacity: .54;
	transform: translate3d(0, var(--scroll-shift, 0px), 0);
	will-change: transform;
	animation-delay: var(--sprite-delay, 0s);
}

.garden-sprite--sunflower {
	left: clamp(14px, 5vw, 86px);
	bottom: clamp(78px, 12vw, 170px);
	width: clamp(58px, 6vw, 94px);
	transform-origin: 50% 100%;
	animation: gardenSway 9s ease-in-out infinite;
}

.garden-sprite--watering-can {
	right: clamp(18px, 8vw, 130px);
	bottom: clamp(68px, 10vw, 150px);
	width: clamp(62px, 7vw, 108px);
	transform-origin: 72% 72%;
	animation: wateringTilt 11s ease-in-out infinite;
}

.garden-sprite--farmer {
	right: clamp(110px, 19vw, 300px);
	bottom: clamp(94px, 13vw, 190px);
	width: clamp(82px, 10vw, 148px);
	opacity: .38;
	animation: farmerIdle 12s ease-in-out infinite;
}

.garden-sprite--plant,
.garden-sprite--plant-two,
.garden-sprite--sprout {
	width: clamp(46px, 5vw, 76px);
	transform-origin: 50% 100%;
	animation: sproutPulse 9s ease-in-out infinite;
}

.garden-sprite--plant {
	left: clamp(22px, 7vw, 120px);
	bottom: clamp(62px, 8vw, 132px);
}

.garden-sprite--plant-two {
	left: clamp(170px, 18vw, 280px);
	bottom: clamp(44px, 7vw, 114px);
}

.garden-sprite--tree {
	left: clamp(12px, 4vw, 70px);
	bottom: clamp(48px, 7vw, 110px);
	width: clamp(76px, 9vw, 142px);
	opacity: .36;
	transform-origin: 50% 100%;
	animation: treeBreath 13s ease-in-out infinite;
}

.garden-sprite--basket {
	right: clamp(22px, 8vw, 120px);
	bottom: clamp(54px, 8vw, 118px);
	width: clamp(62px, 6vw, 96px);
	opacity: .42;
	animation: basketHop 11s ease-in-out infinite;
}

.garden-sprite--hand-plant {
	right: clamp(145px, 20vw, 290px);
	bottom: clamp(66px, 9vw, 132px);
	width: clamp(58px, 6vw, 98px);
	opacity: .42;
	animation: handFloat 12s ease-in-out infinite;
}

.garden-sprites--home-hero .garden-sprite--sunflower {
	bottom: clamp(90px, 12vw, 170px);
}

.garden-sprites--home-hero .garden-sprite--watering-can {
	right: clamp(20px, 6vw, 108px);
	opacity: .45;
}

.garden-sprites--home-hero .garden-sprite--farmer {
	right: clamp(70px, 15vw, 250px);
}

.garden-sprites--plugin-garden {
	z-index: 2;
}

.garden-sprites--plugin-garden .garden-sprite--tree {
	left: clamp(12px, 5vw, 96px);
	bottom: 20px;
}

.garden-sprites--plugin-garden .garden-sprite--basket {
	right: clamp(22px, 6vw, 110px);
	bottom: 34px;
}

.garden-sprites--plugin-garden .garden-sprite--hand-plant {
	right: clamp(110px, 18vw, 260px);
	bottom: 26px;
}

.garden-sprites--footer {
	z-index: 0;
	opacity: .32;
}

.garden-sprites--footer .garden-sprite {
	filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .42));
}

.garden-sprites--footer .garden-sprite--tree {
	left: auto;
	right: clamp(10px, 5vw, 80px);
	bottom: -24px;
}

.garden-sprites--footer .garden-sprite--basket {
	right: auto;
	left: clamp(12px, 5vw, 70px);
	bottom: -10px;
}

.garden-sprites--footer .garden-sprite--sprout {
	left: 50%;
	bottom: 18px;
}

.grass-divider {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 4;
	height: clamp(70px, 8vw, 118px);
	background: transparent;
	pointer-events: none;
}

.grass-divider svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.grass-divider__mist {
	fill: rgba(0, 0, 0, .14);
}

.grass-divider__back {
	fill: rgba(0, 0, 0, .28);
}

.grass-divider__front {
	fill: #000;
}

.grass-divider__blade {
	fill: none;
	stroke: rgba(0, 0, 0, .56);
	stroke-width: 9;
	stroke-linecap: round;
}

.grass-divider__detail {
	fill: none;
	stroke: rgba(0, 0, 0, .3);
	stroke-width: 5;
	stroke-linecap: round;
}

.grass-divider--bottom {
	bottom: -1px;
}

.grass-divider--top {
	top: -1px;
	transform: rotate(180deg);
}

.section--black {
	background:
		radial-gradient(circle at 50% 0%, rgba(109, 201, 16, .08), transparent 34%),
		linear-gradient(180deg, #010302 0%, #03100c 58%, #000 100%);
}

.section {
	padding: 64px clamp(18px, 5vw, 72px);
}

.intro-head {
	position: relative;
	display: grid;
	place-items: center;
	gap: 0;
	margin-top: -1px;
	text-align: center;
}

.garden-prop {
	position: absolute;
	width: clamp(74px, 10vw, 130px);
	opacity: .9;
	pointer-events: none;
}

.garden-prop--sprout {
	left: clamp(18px, 10vw, 140px);
	top: 28px;
}

.section-khand {
	margin: 0;
	color: var(--white);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: clamp(24px, 3vw, 40px);
	font-weight: 600;
	line-height: 1.18;
}

.intro-head h2,
.plugin-heading h2 {
	margin: 0;
	color: var(--text);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 3.8px;
	line-height: 1.12;
	text-transform: uppercase;
}

.why-section {
	position: relative;
	padding: 12px clamp(18px, 5vw, 72px) 82px;
	background:
		radial-gradient(circle at 16% 0%, rgba(109, 201, 16, .08), transparent 30%),
		radial-gradient(circle at 82% 4%, rgba(0, 184, 255, .06), transparent 34%),
		linear-gradient(180deg, #000 0%, #03100c 46%, #000 100%);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(180px, 1fr));
	gap: clamp(16px, 2vw, 26px);
	max-width: 1440px;
	margin: 0 auto;
}

.why-card {
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: start;
	min-height: 100%;
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--card-radius);
	color: var(--white);
	text-align: center;
	backdrop-filter: blur(10px);
	transition: transform .4s ease, box-shadow .4s ease;
}

.why-card::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 2px;
	border-radius: var(--card-radius);
	pointer-events: none;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.why-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.why-card--privacy {
	background: rgba(93, 168, 43, .28);
}

.why-card--privacy::before {
	background: linear-gradient(135deg, #7cff9e 0%, #b8ff7a 25%, #ffd36b 50%, #ff9f5c 70%, #ff6fd8 85%, #a86bff 100%);
}

.why-card--bots {
	background: rgba(48, 17, 109, .31);
}

.why-card--bots::before {
	background: linear-gradient(135deg, #7f5cff, #3aa0ff, #ff4fd8);
}

.why-card--growth {
	background: rgba(254, 205, 20, .18);
}

.why-card--growth::before {
	background: linear-gradient(135deg, #ffd36b, #ff9f5c, #ff6fd8, #a86bff);
}

.why-card--practice {
	background: rgba(30, 12, 45, .6);
}

.why-card--practice::before {
	background: linear-gradient(135deg, #ff73d9 0%, #ff9f5c 35%, #a86bff 70%, #7f5cff 100%);
}

.why-card__image {
	display: grid;
	place-items: center;
	min-height: 122px;
	margin-bottom: 16px;
}

.why-card__image img {
	max-height: 116px;
	margin-inline: auto;
	animation: floaty 5.6s ease-in-out infinite;
	animation-delay: var(--delay);
}

.why-card h3 {
	margin: 0 0 14px;
	color: var(--white);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
}

.why-card p {
	margin: 0;
	color: var(--text);
	font-size: 15px;
}

.garden-strip {
	background: #000;
	padding: 16px clamp(18px, 5vw, 72px) 70px;
}

.garden-strip__inner {
	display: grid;
	grid-template-columns: 110px minmax(0, 660px) 110px;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 4vw, 52px);
	max-width: 1040px;
	margin: 0 auto;
	color: var(--white);
	text-align: center;
}

.garden-strip__inner p {
	margin: 0;
	font-size: clamp(18px, 2.2vw, 27px);
	font-weight: 800;
	line-height: 1.25;
}

.garden-strip__inner img {
	max-height: 118px;
	object-fit: contain;
	opacity: .72;
}

.plugin-heading {
	position: relative;
	min-height: 42vh;
	display: grid;
	align-items: end;
	overflow: hidden;
	background:
		linear-gradient(rgba(8, 13, 20, .14), rgba(8, 13, 20, .22)),
		var(--section-image) center / cover fixed no-repeat;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.plugin-heading__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 170px clamp(18px, 5vw, 72px) 54px;
	text-align: center;
}

.plugin-section {
	position: relative;
	padding: 0 0 92px;
	background:
		linear-gradient(rgba(8, 13, 20, .24), rgba(8, 13, 20, .58)),
		var(--section-image) center / cover fixed no-repeat;
}

.plugin-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 28px);
	align-items: stretch;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(18px, 4vw, 36px);
}

.plugin-card {
	grid-column: span 2;
	overflow: hidden;
	display: grid;
	grid-template-rows: 300px 1fr;
	min-height: 540px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .72);
	color: var(--white);
}

.plugin-card--primary {
	grid-column: span 3;
	min-height: 580px;
}

.plugin-card--secondary {
	grid-column: 2 / span 4;
	min-height: 470px;
}

.plugin-card--primary .plugin-card__media {
	min-height: 330px;
}

.plugin-card__media {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .02);
}

.plugin-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.5s ease;
}

.plugin-card:hover .plugin-card__media img {
	transform: scale(1.1);
}

.plugin-card__content {
	display: grid;
	gap: 14px;
	align-content: start;
	padding: 26px 22px 30px;
	text-align: center;
}

.plugin-card h3 {
	margin: 0;
	color: var(--white);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

.plugin-card p {
	margin: 0;
	color: var(--white);
}

.plugin-card .button {
	justify-self: center;
	margin-top: 8px;
}

.more-plugin-strip {
	display: grid;
	gap: 16px;
	max-width: 760px;
	margin: 34px auto 0;
	padding: 0 clamp(18px, 4vw, 36px);
	text-align: center;
}

.more-plugin-strip .kicker {
	margin: 0;
	font-size: 12px;
	letter-spacing: 2px;
}

.more-plugin-strip__grid {
	display: grid;
	gap: 14px;
}

.more-plugin-card {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .54);
	color: var(--white);
	text-align: left;
	text-decoration: none;
	transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.more-plugin-card:hover,
.more-plugin-card:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(109, 201, 16, .4);
	background: rgba(0, 0, 0, .68);
	color: var(--white);
}

.more-plugin-card img {
	width: 74px;
	height: 74px;
	object-fit: contain;
}

.more-plugin-card span {
	display: grid;
	gap: 4px;
}

.more-plugin-card strong {
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 28px;
	line-height: 1;
}

.more-plugin-card small {
	color: var(--text);
	font-size: 14px;
	line-height: 1.45;
}

.focus-plugin-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 34px);
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 clamp(18px, 4vw, 36px);
}

.focus-plugin-card {
	overflow: hidden;
	display: grid;
	grid-template-rows: 340px 1fr;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .74);
	color: var(--white);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.focus-plugin-card__media {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .035);
}

.focus-plugin-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}

.focus-plugin-card:hover .focus-plugin-card__media img {
	transform: scale(1.055);
}

.focus-plugin-card__content {
	display: grid;
	gap: 14px;
	align-content: start;
	padding: clamp(22px, 3vw, 34px);
}

.focus-plugin-card__content .kicker {
	margin: 0;
	font-size: 12px;
	letter-spacing: 2px;
}

.focus-plugin-card__content .kicker,
.download-card__content .kicker {
	text-transform: none;
	letter-spacing: 1.4px;
}

.focus-plugin-card h3,
.download-card h3 {
	margin: 0;
	color: var(--white);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: clamp(36px, 4vw, 54px);
	font-weight: 600;
	line-height: .98;
}

.focus-plugin-card p:not(.kicker),
.download-card p:not(.kicker) {
	margin: 0;
	color: var(--text);
	font-size: 16px;
}

.focus-plugin-card__actions,
.download-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.download-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	max-width: 1180px;
	margin: 34px auto 0;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(109, 201, 16, .22);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .74);
	color: var(--white);
}

.interest-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1120px;
	margin: 0 auto 88px;
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background:
		linear-gradient(135deg, rgba(109, 201, 16, .14), rgba(245, 64, 151, .08)),
		rgba(0, 0, 0, .64);
	color: var(--white);
}

.interest-band h2 {
	margin: 4px 0 8px;
	color: var(--white);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.03;
}

.interest-band p:not(.kicker) {
	max-width: 680px;
	margin: 0;
	color: var(--text);
}

.download-cta-band h2 {
	margin: 4px 0 0;
	color: var(--white);
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.12;
}

.more-plugin-strip__grid--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-proof-section {
	position: relative;
	padding: clamp(70px, 8vw, 120px) clamp(18px, 5vw, 72px) 96px;
	background:
		linear-gradient(180deg, #000 0%, #070b12 48%, #030503 100%);
	color: var(--white);
}

.home-proof-head {
	display: grid;
	gap: 14px;
	max-width: 920px;
	margin: 0 auto clamp(34px, 5vw, 64px);
	text-align: center;
}

.home-proof-head .section-khand,
.home-secondary-plugins .section-khand {
	color: var(--green);
	font-size: clamp(28px, 3.6vw, 46px);
	line-height: 1.05;
}

.home-proof-head h2 {
	margin: 0;
	color: var(--white);
	font-size: clamp(30px, 4.1vw, 52px);
	line-height: 1.08;
}

.home-proof-head p:not(.section-khand) {
	margin: 0 auto;
	max-width: 760px;
	color: var(--text);
	font-size: clamp(16px, 1.5vw, 19px);
}

.home-product-showcase {
	display: grid;
	gap: clamp(24px, 4vw, 46px);
	max-width: 1220px;
	margin: 0 auto;
}

.home-product-card {
	display: grid;
	grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
	align-items: center;
	gap: clamp(22px, 4vw, 54px);
	padding: clamp(22px, 4vw, 46px);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02)),
		rgba(0, 0, 0, .58);
	box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.home-product-card:nth-child(even) {
	grid-template-columns: minmax(0, 1.16fr) minmax(280px, .84fr);
}

.home-product-card:nth-child(even) .home-product-card__copy {
	order: 2;
}

.home-product-card__copy {
	display: grid;
	gap: 14px;
	align-content: center;
}

.home-product-card__copy .kicker {
	margin: 0;
	color: var(--green);
	font-size: 12px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.home-product-card__copy h3 {
	margin: 0;
	color: var(--white);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 600;
	line-height: 1;
}

.home-product-card__copy p:not(.kicker) {
	margin: 0;
	color: var(--text);
	font-size: clamp(16px, 1.5vw, 18px);
}

.home-product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.home-product-card__shot {
	overflow: hidden;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	background: #0b1018;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.home-product-card__shot button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.home-product-card__shot img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top center;
}

.home-product-card__shot figcaption {
	padding: 13px 16px 15px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.objection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	max-width: 1220px;
	margin: clamp(34px, 5vw, 60px) auto 0;
}

.objection-card {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--card-radius);
	background: rgba(255, 255, 255, .045);
}

.objection-card h3 {
	margin: 0 0 10px;
	color: var(--white);
	font-size: 18px;
	line-height: 1.25;
}

.objection-card p {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	line-height: 1.6;
}

.home-secondary-plugins {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: 1180px;
	margin: 26px auto 0;
	padding: 20px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-secondary-plugins .section-khand {
	margin: 0;
	color: var(--muted);
}

.home-secondary-plugins div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.home-secondary-plugins a {
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	color: var(--white);
	font-size: 14px;
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease;
}

.home-secondary-plugins a:hover,
.home-secondary-plugins a:focus-visible {
	border-color: rgba(109, 201, 16, .45);
	background: rgba(109, 201, 16, .08);
}

.downloads-section {
	position: relative;
	padding: 82px clamp(18px, 5vw, 72px) 100px;
	background:
		radial-gradient(circle at 50% 0%, rgba(0, 184, 255, .1), transparent 36%),
		linear-gradient(180deg, #03080b 0%, #071016 48%, #03070b 100%);
	color: var(--white);
}

.latest-download {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
	gap: clamp(22px, 5vw, 70px);
	align-items: center;
	padding: clamp(46px, 5vw, 70px) clamp(18px, 5vw, 72px);
	background:
		radial-gradient(circle at 80% 12%, rgba(0, 184, 255, .14), transparent 34%),
		radial-gradient(circle at 12% 88%, rgba(109, 201, 16, .16), transparent 32%),
		linear-gradient(135deg, #04100f 0%, #061015 54%, #03070b 100%);
	color: var(--white);
}

.latest-download[data-reveal] {
	opacity: 1;
	transform: none;
}

.latest-download__copy,
.latest-download__panel {
	max-width: 760px;
}

.latest-download__copy h2,
.latest-download__copy h1 {
	margin: 8px 0 14px;
	color: var(--white);
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.12;
}

.latest-download__copy p:not(.section-khand) {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.65;
}

.latest-download__status {
	display: inline-flex;
	width: fit-content;
	margin-top: 18px !important;
	padding: 8px 11px;
	border: 1px solid rgba(109, 201, 16, .3);
	background: rgba(109, 201, 16, .1);
	color: var(--green) !important;
	font-size: 13px !important;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.latest-download__panel {
	display: grid;
	gap: 18px;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .46);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
	backdrop-filter: blur(8px);
}

.latest-download__panel img {
	max-width: 220px;
	filter: drop-shadow(0 20px 34px rgba(0, 0, 0, .38));
}

.latest-download__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
}

.latest-download__facts div {
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, .1);
	background: rgba(255, 255, 255, .045);
}

.latest-download__facts dt {
	margin: 0 0 4px;
	color: var(--green);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.latest-download__facts dd {
	margin: 0;
	color: var(--white);
	font-weight: 850;
}

.latest-download__note {
	margin: 0;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	line-height: 1.5;
}

.download-fallback {
	min-height: 70vh;
	padding-top: 120px;
	background: #03070b;
}

.download-path {
	padding: 72px clamp(18px, 5vw, 72px);
	background:
		radial-gradient(circle at 14% 18%, rgba(109, 201, 16, .12), transparent 30%),
		linear-gradient(180deg, #03080b 0%, #071014 100%);
	color: var(--white);
}

.download-path__head {
	max-width: 860px;
	margin: 0 auto 28px;
	text-align: center;
}

.download-path [data-reveal] {
	opacity: 1;
	transform: none;
}

.download-path__head h2 {
	margin: 8px 0 0;
	font-size: clamp(27px, 2.8vw, 38px);
	line-height: 1.12;
}

.download-path__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 1120px;
	margin: 0 auto;
}

.download-path__step {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .36);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.download-path__step span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border: 1px solid rgba(109, 201, 16, .3);
	background: rgba(109, 201, 16, .1);
	color: var(--green);
	font-weight: 900;
}

.download-path__step h3 {
	margin: 0 0 10px;
	color: var(--white);
	font-size: 22px;
}

.download-path__step p {
	margin: 0;
	color: rgba(255, 255, 255, .76);
	line-height: 1.65;
}

.downloads-section__head {
	max-width: 900px;
	margin: 0 auto 34px;
	text-align: center;
}

.downloads-section__head h2 {
	margin: 8px 0 0;
	color: var(--text);
	font-size: clamp(19px, 2.4vw, 28px);
	line-height: 1.35;
}

.download-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	gap: clamp(18px, 3vw, 32px);
	max-width: 1180px;
	margin: 0 auto;
}

.download-card {
	overflow: hidden;
	display: grid;
	grid-template-rows: 270px 1fr;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .74);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

.download-card[data-reveal],
.focus-plugin-card[data-reveal] {
	opacity: 1;
	transform: none;
}

.download-card--primary {
	border-color: rgba(109, 201, 16, .28);
}

.download-card__media {
	display: grid;
	place-items: center;
	padding: 28px;
	background: rgba(255, 255, 255, .035);
}

.download-card__media img {
	max-height: 86%;
	object-fit: contain;
	filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .42));
}

.download-card__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 16px;
	align-content: start;
	padding: clamp(26px, 3vw, 38px) clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px);
	background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .18));
}

.download-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.download-facts li {
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .055);
	color: rgba(255, 255, 255, .84);
	font-size: 13px;
	font-weight: 750;
}

.download-more {
	display: grid;
	gap: 14px;
	max-width: 760px;
	margin: 34px auto 0;
	text-align: center;
}

.download-more__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.download-more__grid a {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .56);
	color: var(--white);
	font-weight: 800;
	text-decoration: none;
}

.download-more__grid a:hover,
.download-more__grid a:focus-visible {
	border-color: rgba(109, 201, 16, .42);
	color: var(--green);
}

.product-hero {
	min-height: 76vh;
	background:
		linear-gradient(90deg, rgba(2, 3, 24, .9) 0%, rgba(7, 13, 21, .54) 48%, rgba(0, 0, 0, .74) 100%),
		var(--hero-image) center / cover fixed no-repeat;
}

.product-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 58% 44%, rgba(0, 184, 255, .14), transparent 34%),
		linear-gradient(90deg, rgba(2, 3, 24, .9) 0%, rgba(7, 13, 21, .54) 48%, rgba(0, 0, 0, .74) 100%),
		var(--hero-image) center / cover fixed no-repeat;
}

.product-hero__inner {
	grid-template-columns: minmax(360px, 1fr) minmax(320px, .82fr);
	min-height: 76vh;
	padding-top: 148px;
	padding-bottom: 120px;
}

.product-hero__visual {
	display: grid;
	place-items: center;
}

.product-hero__visual img {
	max-height: min(430px, 48vh);
	object-fit: contain;
	filter: drop-shadow(0 34px 54px rgba(0, 0, 0, .56));
}

.product-hero--proofshield .product-hero__visual img {
	max-height: 320px;
	padding: clamp(18px, 3vw, 34px);
	background: rgba(0, 0, 0, .52);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
}

.product-hero--no-visual .product-hero__inner {
	grid-template-columns: minmax(0, 760px);
	justify-content: start;
}

.product-hero--no-visual .product-hero__copy {
	max-width: 760px;
}

.product-content {
	position: relative;
	padding: 76px clamp(18px, 5vw, 72px) 100px;
	background: #000;
}

.product-page--proofshield .product-content {
	margin-top: -28px;
	padding-top: 104px;
	background:
		radial-gradient(circle at 18% 2%, rgba(109, 201, 16, .13), transparent 30%),
		radial-gradient(circle at 82% 12%, rgba(0, 184, 255, .12), transparent 34%),
		linear-gradient(180deg, #04100f 0%, #061014 58%, #061119 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .035),
		inset 0 22px 42px rgba(0, 0, 0, .32);
	clip-path: polygon(0 28px, 10% 22px, 22% 32px, 36% 20px, 51% 30px, 66% 21px, 82% 31px, 100% 24px, 100% 100%, 0 100%);
}

.product-page--proofshield .product-content::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -126px;
	height: 178px;
	z-index: 0;
	background:
		radial-gradient(ellipse at 18% 84%, rgba(109, 201, 16, .11), transparent 36%),
		radial-gradient(ellipse at 82% 80%, rgba(0, 184, 255, .09), transparent 38%),
		linear-gradient(180deg, rgba(4, 16, 15, 0) 0%, rgba(4, 16, 15, .58) 38%, #04100f 64%, #04100f 100%);
	pointer-events: none;
}

.product-page--proofshield .product-content > * {
	position: relative;
	z-index: 1;
}

.product-page--proofshield .product-hero::after {
	height: 210px;
	background: linear-gradient(180deg, rgba(8, 13, 20, 0) 0%, rgba(2, 14, 18, .2) 42%, rgba(3, 13, 13, .66) 78%, #04100f 100%);
}

.product-page--proofshield .product-hero .grass-divider {
	height: clamp(76px, 7vw, 112px);
	opacity: .78;
}

.product-page--proofshield .product-hero .grass-divider__mist {
	fill: rgba(4, 16, 15, .2);
}

.product-page--proofshield .product-hero .grass-divider__back {
	fill: rgba(4, 16, 15, .58);
}

.product-page--proofshield .product-hero .grass-divider__front {
	fill: #04100f;
}

.product-page--proofshield .product-hero .grass-divider__blade,
.product-page--proofshield .product-hero .grass-divider__detail {
	stroke: rgba(4, 16, 15, .46);
}

.product-screenshots {
	position: relative;
	padding: 82px clamp(18px, 5vw, 72px);
	background: #071119;
}

.product-page--proofshield .product-screenshots {
	background:
		linear-gradient(180deg, rgba(4, 12, 18, .54), rgba(1, 8, 12, .64)),
		radial-gradient(circle at 50% 4%, rgba(0, 184, 255, .16), transparent 38%),
		url("../images/proofshield-plugin-garden-proof-bg.webp") center 58% / cover fixed no-repeat;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .04),
		inset 0 -42px 68px rgba(0, 0, 0, .34);
}

.screenshot-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap: 18px;
	max-width: 1240px;
	margin: 36px auto 0;
}

.screenshot-card {
	overflow: hidden;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	background: rgba(255, 255, 255, .05);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.screenshot-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top center;
}

.image-lightbox-trigger {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	text-align: inherit;
}

.image-lightbox-trigger:focus-visible {
	outline: 3px solid var(--pink);
	outline-offset: 4px;
}

.screenshot-card figcaption {
	padding: 14px 16px;
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	line-height: 1.5;
}

.complexity-section {
	padding: 76px clamp(18px, 5vw, 72px);
	background:
		linear-gradient(135deg, rgba(109, 201, 16, .12), rgba(0, 0, 0, 0) 46%),
		#000;
}

.product-page--proofshield .complexity-section {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(4, 14, 13, .82) 54%, rgba(0, 0, 0, .9) 100%),
		radial-gradient(circle at 20% 35%, rgba(109, 201, 16, .14), transparent 34%),
		url("../images/proofshield-plugin-garden-proof-bg.webp") center 72% / cover fixed no-repeat;
}

.complexity-section__inner {
	max-width: 980px;
	margin: 0 auto;
}

.complexity-section h2 {
	margin: 0;
	color: var(--white);
	font-size: clamp(28px, 3.3vw, 44px);
	line-height: 1.12;
}

.complexity-section p:not(.section-khand) {
	max-width: 760px;
	color: rgba(255, 255, 255, .76);
	font-size: 18px;
	line-height: 1.7;
}

.product-content__intro {
	max-width: 960px;
	margin: 0 auto 34px;
	text-align: center;
}

.product-content__intro h2 {
	margin: 8px 0 0;
	color: var(--text);
	font-size: clamp(19px, 2.4vw, 28px);
	font-weight: 650;
	line-height: 1.35;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 1040px;
	margin: 0 auto;
}

.feature-card {
	display: grid;
	gap: 18px;
	justify-items: center;
	padding: 28px 22px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(255, 255, 255, .045);
	text-align: center;
}

.feature-card img {
	height: 82px;
	object-fit: contain;
}

.feature-card p {
	margin: 0;
	color: var(--white);
	font-weight: 750;
	line-height: 1.35;
}

.feature-card h3 {
	margin: 0;
	color: var(--white);
	font-size: 20px;
	line-height: 1.25;
}

.proofshield-overview {
	padding-bottom: 82px;
}

.product-upsell {
	padding: 82px clamp(18px, 5vw, 72px);
	background:
		linear-gradient(180deg, rgba(4, 8, 10, .94), rgba(9, 19, 22, .9)),
		url("../images/softwaregarten-background-lila.png") center / cover no-repeat;
	color: var(--white);
}

.product-page--proofshield .product-upsell {
	background:
		radial-gradient(circle at 58% 8%, rgba(0, 184, 255, .14), transparent 36%),
		radial-gradient(circle at 18% 74%, rgba(109, 201, 16, .1), transparent 30%),
		linear-gradient(180deg, #03090d 0%, #071217 58%, #03080b 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .04),
		inset 0 -30px 48px rgba(0, 0, 0, .28);
}

.product-upsell__intro {
	max-width: 920px;
	margin: 0 auto 30px;
	text-align: center;
}

.product-upsell__intro h2 {
	margin: 8px 0 12px;
	color: var(--white);
	font-size: clamp(28px, 3.3vw, 42px);
	line-height: 1.12;
}

.product-upsell__intro p {
	margin: 0 auto;
	max-width: 790px;
	color: rgba(255, 255, 255, .78);
	font-size: 18px;
	line-height: 1.65;
}

.product-upsell__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 1120px;
	margin: 0 auto 22px;
}

.product-upsell-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .54);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.product-upsell-card span {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--green);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.product-upsell-card h3 {
	margin: 0 0 10px;
	color: var(--white);
	font-size: 22px;
	line-height: 1.2;
}

.product-upsell-card p {
	margin: 0;
	color: rgba(255, 255, 255, .76);
	line-height: 1.62;
}

.product-upsell__compare {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	max-width: 1120px;
	margin: 0 auto;
}

.product-upsell__compare > div {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	background: rgba(255, 255, 255, .06);
}

.product-upsell__compare h3 {
	margin: 0 0 14px;
	color: var(--white);
	font-size: 21px;
	line-height: 1.25;
}

.product-upsell__compare ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-upsell__compare li {
	position: relative;
	padding-left: 24px;
	color: rgba(255, 255, 255, .8);
	line-height: 1.45;
}

.product-upsell__compare li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .56em;
	width: 9px;
	height: 9px;
	background: var(--green);
}

.product-upsell__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.pricing-section {
	position: relative;
	padding: 82px clamp(18px, 5vw, 72px) 96px;
	background:
		radial-gradient(circle at 52% 0%, rgba(0, 184, 255, .1), transparent 34%),
		linear-gradient(180deg, #061016 0%, #03070b 100%);
	color: var(--white);
}

.product-page--proofshield .pricing-section {
	background:
		radial-gradient(circle at 52% 0%, rgba(0, 184, 255, .12), transparent 34%),
		radial-gradient(circle at 16% 88%, rgba(109, 201, 16, .1), transparent 30%),
		linear-gradient(180deg, #061016 0%, #03070b 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.product-page--proofshield .pricing-card,
.product-page--proofshield .pricing-empty,
.product-page--proofshield .product-upsell-card,
.product-page--proofshield .product-upsell__compare > div {
	background: rgba(0, 0, 0, .46);
	border-color: rgba(150, 231, 255, .28);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
	backdrop-filter: blur(2px);
}

.pricing-section__head {
	max-width: 920px;
	margin: 0 auto 34px;
	text-align: center;
}

.pricing-section__head h2 {
	margin: 8px 0 10px;
	color: var(--white);
	font-size: clamp(22px, 3vw, 36px);
	line-height: 1.2;
}

.pricing-section__head p {
	margin: 0 auto;
	max-width: 720px;
	color: var(--text);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 1120px;
	margin: 0 auto;
}

.pricing-card,
.pricing-empty,
.link-tile {
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .72);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.pricing-card {
	display: grid;
	align-content: start;
	gap: 18px;
	padding: 28px;
}

.pricing-card h3,
.pricing-empty h3 {
	margin: 0;
	color: var(--white);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 34px;
	line-height: 1;
}

.pricing-card__price {
	margin: 0;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.pricing-card__price strong {
	color: var(--green);
	font-family: "Russo One", Impact, sans-serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 400;
	line-height: 1;
}

.pricing-card__price span {
	color: var(--muted);
}

.pricing-card ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pricing-card li {
	position: relative;
	padding-left: 22px;
	color: var(--text);
}

.pricing-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .72em;
	width: 8px;
	height: 8px;
	background: var(--green);
}

.pricing-card .button {
	align-self: end;
	margin-top: 8px;
}

.pricing-empty {
	max-width: 760px;
	margin: 0 auto;
	padding: 30px;
	text-align: center;
}

.pricing-empty p {
	margin: 10px auto 0;
	max-width: 620px;
	color: var(--text);
}

.pricing-empty code {
	color: var(--green);
}

.pricing-empty .button {
	margin-top: 22px;
}

.proofshield-links {
	padding-top: 78px;
}

.link-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 1040px;
	margin: 0 auto;
}

.link-tile {
	display: grid;
	gap: 8px;
	padding: 24px;
	color: var(--white);
	text-decoration: none;
	transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.link-tile:hover,
.link-tile:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(109, 201, 16, .42);
	background: rgba(109, 201, 16, .1);
	color: var(--white);
}

.link-tile strong {
	font-size: 20px;
	line-height: 1.25;
}

.link-tile span {
	color: var(--text);
}

.contact-content .section-khand {
	font-size: clamp(28px, 4vw, 50px);
}

.contact-content {
	background:
		radial-gradient(circle at 18% 4%, rgba(109, 201, 16, .12), transparent 28%),
		linear-gradient(180deg, #000 0%, #071007 100%);
}

.contact-form .psl-fallback-field,
.contact-form [data-psl-honeypot-wrap] {
	position: absolute;
	left: -100vw;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.psl-info-card {
	box-sizing: border-box;
	display: grid;
	gap: 10px;
	max-width: 320px;
	padding: 14px 16px 13px;
	border: 1px solid rgba(109, 201, 16, .24);
	border-left: 5px solid var(--green);
	border-radius: var(--card-radius);
	background: rgba(109, 201, 16, .08);
	color: var(--white);
}

.psl-info-card__head {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.psl-info-card__dot {
	width: 10px;
	height: 10px;
	flex: 0 0 auto;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(109, 201, 16, .16);
}

.psl-info-card__logo {
	display: block;
	width: auto;
	max-width: 118px;
	max-height: 32px;
	object-fit: contain;
}

.psl-info-card__brand {
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
}

.psl-info-card__status {
	margin: 0;
	color: var(--text);
	font-size: 13px;
	line-height: 1.45;
}

.psl-info-card__bar {
	height: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, .1);
}

.psl-info-card__bar span {
	display: block;
	width: 18%;
	height: 100%;
	background: linear-gradient(90deg, var(--green), #38d36f);
	transition: width .35s ease;
}

.psl-info-card[data-psl-state="working"] .psl-info-card__bar span {
	width: 62%;
}

.psl-info-card[data-psl-state="ok"] .psl-info-card__bar span {
	width: 94%;
}

.psl-info-card[data-psl-state="error"] {
	border-color: rgba(245, 64, 151, .34);
	border-left-color: var(--pink);
	background: rgba(245, 64, 151, .13);
}

.psl-info-card[data-psl-state="error"] .psl-info-card__dot,
.psl-info-card[data-psl-state="error"] .psl-info-card__bar span {
	background: var(--pink);
	box-shadow: 0 0 0 4px rgba(245, 64, 151, .16);
}

.support-hero .product-hero__inner {
	grid-template-columns: minmax(360px, 1fr) minmax(280px, .55fr);
}

.support-proof-card {
	display: grid;
	gap: 10px;
	justify-self: end;
	max-width: 360px;
	padding: 26px;
	border: 1px solid rgba(109, 201, 16, .26);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .58);
	color: var(--white);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.support-proof-card strong {
	color: var(--green);
	font-family: Khand, Impact, "Arial Narrow", sans-serif;
	font-size: 34px;
	line-height: 1;
}

.support-proof-card p {
	margin: 0;
	color: var(--text);
}

.support-section {
	padding: 78px clamp(18px, 5vw, 72px) 100px;
	background: #000;
}

.support-intake-section {
	padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px) 96px;
	background:
		linear-gradient(180deg, #000 0%, #071007 100%);
	color: var(--white);
}

.support-intake-head {
	max-width: 980px;
	margin: 0 auto 28px;
	text-align: center;
}

.support-intake-head .section-khand {
	color: var(--green);
	font-size: clamp(32px, 4vw, 56px);
}

.support-intake-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	max-width: 1180px;
	margin: 0 auto;
}

.support-intake-card {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(255, 255, 255, .045);
}

.support-intake-card h2 {
	margin: 0 0 8px;
	color: var(--white);
	font-size: 19px;
	line-height: 1.2;
}

.support-intake-card p {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	line-height: 1.58;
}

.support-intake-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	max-width: 860px;
	margin: 28px auto 0;
}

.support-shell {
	display: grid;
	grid-template-columns: minmax(260px, .7fr) minmax(420px, 1fr);
	gap: clamp(28px, 6vw, 90px);
	align-items: start;
	max-width: 1180px;
	margin: 0 auto;
}

.support-copy h2 {
	margin: 8px 0 14px;
	color: var(--white);
	font-size: clamp(22px, 3vw, 38px);
	line-height: 1.18;
}

.support-copy p:not(.section-khand) {
	margin: 0;
	color: var(--text);
	font-size: 17px;
}

.support-form {
	display: grid;
	gap: 18px;
	padding: clamp(20px, 4vw, 34px);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--card-radius);
	background: rgba(255, 255, 255, .045);
	box-shadow: 0 22px 70px rgba(0, 0, 0, .25);
}

.support-form label {
	display: grid;
	gap: 7px;
	color: var(--white);
	font-weight: 750;
}

.support-form input,
.support-form select,
.support-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	background: rgba(0, 0, 0, .46);
	color: var(--white);
	font: inherit;
	line-height: 1.35;
}

.support-form input,
.support-form select {
	min-height: 46px;
	padding: 10px 12px;
}

.support-form textarea {
	min-height: 180px;
	padding: 12px;
	resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
	outline: 2px solid rgba(109, 201, 16, .58);
	outline-offset: 2px;
}

.support-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.support-form__trap {
	position: absolute;
	left: -100vw;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.support-form__proof {
	display: flex;
	gap: 11px;
	align-items: center;
	padding: 13px 14px;
	border: 1px solid rgba(109, 201, 16, .18);
	border-radius: var(--card-radius);
	background: rgba(109, 201, 16, .08);
}

.support-form__proof span {
	width: 12px;
	height: 12px;
	flex: 0 0 auto;
	background: var(--green);
	box-shadow: 0 0 16px rgba(109, 201, 16, .55);
}

.support-form__proof p {
	margin: 0;
	color: var(--text);
	font-size: 14px;
}

.form-notice {
	padding: 14px 16px;
	border-radius: var(--card-radius);
	color: var(--white);
}

.form-notice ul {
	margin: 8px 0 0;
	padding-left: 20px;
}

.form-notice--success {
	border: 1px solid rgba(109, 201, 16, .36);
	background: rgba(109, 201, 16, .14);
}

.form-notice--error {
	border: 1px solid rgba(245, 64, 151, .34);
	background: rgba(245, 64, 151, .13);
}

.support-form button[disabled] {
	cursor: wait;
	opacity: .72;
}

.proof-docs-section {
	position: relative;
	grid-column: auto;
	margin: 0;
	padding: 78px clamp(18px, 4vw, 54px) 86px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: #000;
}

.proofshield-page .product-hero {
	grid-column: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.proof-docs-layout {
	display: grid;
	grid-template-columns: 282px minmax(0, 1fr);
	gap: 28px;
	max-width: 1390px;
	margin: 0 auto;
	align-items: start;
}

.proofshield-page .docs-sidebar {
	position: sticky;
	inset: auto;
	top: 24px;
	width: 282px;
	max-height: calc(100vh - 48px);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--card-radius);
	overflow: hidden;
	z-index: 2;
}

.proofshield-page .doc-shell {
	grid-column: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 28px;
	max-width: none;
	margin: 0;
	padding: 0;
}

.proofshield-page .doc-shell > header {
	display: none;
}

.proofshield-page .doc-shell > section,
.proofshield-page .doc-shell > footer {
	border-radius: var(--card-radius);
}

.proofshield-page .toc {
	top: 24px;
}

.proofshield-page .doc-shell section {
	scroll-margin-top: 32px;
}

.sg-footer {
	position: relative;
	grid-column: auto;
	margin: 0;
	padding: 46px clamp(18px, 5vw, 72px);
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .96), rgba(5, 2, 49, .98)),
		#000;
	border-top: 1px solid rgba(255, 255, 255, .08);
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--text);
	font-size: 15px;
}

.sg-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 1.3fr) minmax(170px, .7fr) minmax(220px, .8fr);
	gap: clamp(24px, 5vw, 70px);
	max-width: 1180px;
	margin: 0 auto;
}

.sg-footer__brand {
	display: grid;
	gap: 14px;
	align-content: start;
}

.sg-footer__brand img {
	width: 190px;
}

.sg-footer__brand p {
	max-width: 520px;
	margin: 0;
}

.sg-footer__nav,
.sg-footer__contact {
	display: grid;
	gap: 10px;
	align-content: start;
}

.sg-footer a {
	color: var(--white);
	text-decoration: none;
}

.sg-footer a:hover,
.sg-footer a:focus-visible {
	color: var(--green);
}

.sg-footer span {
	color: var(--muted);
}

.legal-page {
	background: #050805;
	color: var(--white);
}

.legal-shell {
	padding: 150px clamp(18px, 5vw, 72px) 80px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .42), #050805 420px),
		url("../images/softwaregarten-plugin-garden-hero.png") center top / cover fixed no-repeat;
}

.legal-content {
	max-width: 980px;
	margin: 0 auto;
	padding: clamp(22px, 4vw, 46px);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--card-radius);
	background: rgba(0, 0, 0, .76);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5 {
	color: var(--white);
	line-height: 1.18;
}

.legal-content h1 {
	margin-top: 0;
	font-size: clamp(34px, 5vw, 58px);
}

.legal-content p,
.legal-content li {
	color: rgba(255, 255, 255, .8);
	line-height: 1.72;
}

.legal-content ul {
	margin: 0 0 1.15rem;
	padding-left: 1.35rem;
}

.legal-content h2 {
	margin-top: 2.4rem;
}

.legal-content h3,
.legal-content h4,
.legal-content h5 {
	margin-bottom: .45rem;
}

.legal-content--raw p + h3,
.legal-content--raw p + h4 {
	margin-top: 1.45rem;
}

.legal-content a {
	color: var(--green);
	overflow-wrap: anywhere;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .75s ease, transform .75s ease;
	transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-zoom[data-reveal] {
	transform: scale(.9);
}

.reveal-zoom[data-reveal].is-visible {
	transform: scale(1);
}

@keyframes slowFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

@keyframes floaty {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

@keyframes gridDrift {
	from {
		background-position: 0 0, 0 0;
	}
	to {
		background-position: 52px 52px, 52px 52px;
	}
}

@keyframes beeBob {
	0%,
	100% {
		transform: translateY(0) rotate(-1deg);
	}
	50% {
		transform: translateY(-4px) rotate(2deg);
	}
}

@keyframes beeHeroFlight {
	0% {
		transform: translate3d(0, 0, 0) scale(.72) rotate(-8deg);
		opacity: 0;
	}
	8% {
		opacity: 1;
	}
	24% {
		transform: translate3d(22vw, -34px, 0) scale(.82) rotate(8deg);
	}
	46% {
		transform: translate3d(48vw, 24px, 0) scale(.7) rotate(-5deg);
	}
	68% {
		transform: translate3d(74vw, -46px, 0) scale(.82) rotate(6deg);
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translate3d(calc(100vw + 170px), 4px, 0) scale(.72) rotate(-3deg);
		opacity: 0;
	}
}

@keyframes beeCardHover {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(.88) rotate(-6deg);
	}
	50% {
		transform: translate3d(-24px, -16px, 0) scale(.96) rotate(7deg);
	}
}

@keyframes gardenSway {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(-1deg);
	}
	50% {
		transform: translate3d(3px, calc(var(--scroll-shift, 0px) - 3px), 0) rotate(2deg);
	}
}

@keyframes wateringTilt {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(-2deg);
	}
	38% {
		transform: translate3d(-3px, calc(var(--scroll-shift, 0px) - 3px), 0) rotate(3deg);
	}
	48% {
		transform: translate3d(-4px, calc(var(--scroll-shift, 0px) - 3px), 0) rotate(5deg);
	}
	62% {
		transform: translate3d(-2px, calc(var(--scroll-shift, 0px) - 1px), 0) rotate(0deg);
	}
}

@keyframes farmerIdle {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(-1deg);
	}
	45% {
		transform: translate3d(-3px, calc(var(--scroll-shift, 0px) - 3px), 0) rotate(1deg);
	}
}

@keyframes sproutPulse {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1) rotate(-1deg);
	}
	50% {
		transform: translate3d(0, calc(var(--scroll-shift, 0px) - 2px), 0) scale(1.025) rotate(1deg);
	}
}

@keyframes treeBreath {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1) rotate(-1deg);
	}
	50% {
		transform: translate3d(2px, calc(var(--scroll-shift, 0px) - 2px), 0) scale(1.01) rotate(0deg);
	}
}

@keyframes basketHop {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(1deg);
	}
	46% {
		transform: translate3d(0, calc(var(--scroll-shift, 0px) - 3px), 0) rotate(-1deg);
	}
	54% {
		transform: translate3d(0, calc(var(--scroll-shift, 0px) - 1px), 0) rotate(1deg);
	}
}

@keyframes handFloat {
	0%,
	100% {
		transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(1deg);
	}
	50% {
		transform: translate3d(3px, calc(var(--scroll-shift, 0px) - 3px), 0) rotate(-1deg);
	}
}

@media (max-width: 1180px) {
	.sg-header__inner {
		flex-wrap: wrap;
	}

	.sg-nav {
		order: 3;
		width: 100%;
		justify-content: flex-start;
	}

	.sg-nav__submenu {
		left: 0;
		right: auto;
	}

	.hero__inner,
	.product-hero__inner {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
		padding-top: 156px;
	}

	.support-shell,
	.support-hero .product-hero__inner {
		grid-template-columns: 1fr;
	}

	.support-proof-card {
		justify-self: start;
	}

	.why-grid,
	.feature-grid,
	.pricing-grid,
	.product-upsell__grid,
	.link-grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}

	.product-upsell__compare {
		grid-template-columns: 1fr;
	}

	.plugin-grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
	}

	.focus-plugin-grid,
	.screenshot-grid,
	.download-grid,
	.latest-download,
	.download-path__grid,
	.objection-grid {
		grid-template-columns: 1fr;
	}

	.home-product-card,
	.home-product-card:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.home-product-card:nth-child(even) .home-product-card__copy {
		order: 0;
	}

	.plugin-card,
	.plugin-card--primary,
	.plugin-card--secondary {
		grid-column: auto;
	}

	.plugin-card:last-child,
	.feature-card:last-child,
	.pricing-card:last-child,
	.link-tile:last-child {
		grid-column: 1 / -1;
	}

	.proof-docs-layout,
	.proofshield-page .doc-shell {
		grid-template-columns: 1fr;
	}

	.proofshield-page .docs-sidebar,
	.proofshield-page .toc {
		position: relative;
		top: auto;
		width: auto;
		max-height: none;
	}
}

@media (max-width: 767px) {
	.sg-header {
		position: relative;
		padding: 0;
		background: #000;
	}

	.sg-header__inner {
		border-radius: 0;
	}

	.sg-brand {
		width: calc(100% - 58px);
	}

	.sg-brand img {
		width: 136px;
	}

	.sg-brand span {
		min-width: 0;
	}

	.sg-brand small {
		font-size: 15px;
		line-height: 1.05;
	}

	.nav-toggle {
		display: block;
	}

	.sg-nav {
		display: none;
	}

	.sg-nav.is-open {
		display: grid;
	}

	.sg-nav a {
		min-height: 38px;
		padding: 8px 10px;
		justify-content: flex-start;
	}

	.sg-nav__group summary {
		min-height: 38px;
		padding: 8px 10px;
	}

	.sg-nav__submenu {
		position: static;
		min-width: 0;
		margin: 0 0 6px 10px;
		padding: 4px 0 4px 12px;
		border: 0;
		border-left: 1px solid rgba(255, 255, 255, .16);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.hero,
	.product-hero,
	.hero__inner,
	.product-hero__inner {
		min-height: auto;
	}

	.hero,
	.product-hero,
	.product-hero__bg,
	.plugin-heading,
	.plugin-section,
	.product-page--proofshield .product-screenshots,
	.product-page--proofshield .complexity-section,
	.product-upsell,
	.product-page--proofshield .product-upsell,
	.product-page--proofshield .pricing-section,
	.pricing-section {
		background-attachment: scroll;
	}

	.hero__inner,
	.product-hero__inner {
		grid-template-columns: 1fr;
		padding: 72px 18px 104px;
	}

	.hero h1,
	.product-hero h1 {
		font-size: 31px;
		letter-spacing: 0;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero__visual {
		display: none;
	}

	.product-hero__visual img {
		max-height: 260px;
		margin-inline: auto;
	}

	.pixel-bee--hero {
		left: -44px;
		top: 2%;
		animation-duration: 22s;
	}

	.pixel-bee--cards {
		top: 16px;
		right: 18px;
		width: 64px;
	}

	.pixel-bee--subpage {
		top: 68px;
		right: 10px;
		width: 48px;
	}

	.garden-sprite--farmer,
	.garden-sprite--tree,
	.garden-sprites--plugin-garden .garden-sprite--hand-plant {
		display: none;
	}

	.garden-sprite--sunflower {
		left: 10px;
		bottom: 74px;
		width: 70px;
	}

	.garden-sprite--watering-can {
		right: 8px;
		bottom: 68px;
		width: 78px;
	}

	.garden-sprite--plant,
	.garden-sprite--plant-two {
		width: 58px;
	}

	.garden-sprites--footer .garden-sprite--basket {
		left: 4px;
		width: 70px;
	}

	.garden-sprites--footer .garden-sprite--sprout {
		left: auto;
		right: 12px;
		width: 54px;
	}

	.grass-divider {
		height: 70px;
	}

	.section {
		padding-block: 48px;
	}

	.garden-prop {
		display: none;
	}

	.why-grid,
	.plugin-grid,
	.feature-grid,
	.pricing-grid,
	.product-upsell__grid,
	.product-upsell__compare,
	.link-grid,
	.garden-strip__inner,
	.sg-footer__inner {
		grid-template-columns: 1fr;
	}

	.product-upsell {
		padding-block: 56px;
	}

	.product-upsell__intro {
		text-align: left;
	}

	.product-upsell__intro h2 {
		font-size: 30px;
	}

	.product-upsell__actions {
		display: grid;
	}

	.plugin-card:last-child,
	.feature-card:last-child,
	.pricing-card:last-child,
	.link-tile:last-child {
		grid-column: auto;
	}

	.garden-strip__inner img {
		max-height: 86px;
		margin-inline: auto;
	}

	.plugin-heading {
		min-height: 34vh;
	}

	.plugin-heading__inner {
		padding-top: 120px;
	}

	.plugin-card {
		grid-template-rows: 260px 1fr;
		min-height: auto;
	}

	.focus-plugin-card,
	.download-card {
		grid-template-rows: 240px 1fr;
	}

	.latest-download {
		padding-block: 54px;
	}

	.latest-download__facts {
		grid-template-columns: 1fr;
	}

	.download-cta-band {
		display: grid;
	}

	.interest-band {
		display: grid;
		margin-bottom: 58px;
	}

	.download-cta-band .button,
	.interest-band .button {
		width: 100%;
	}

	.checkout-consent,
	.checkout-consent .button,
	.checkout-consent__note {
		width: 100%;
		max-width: 100%;
	}

	.home-proof-section {
		padding: 58px 14px 72px;
	}

	.home-proof-head {
		text-align: left;
	}

	.home-proof-head h2 {
		font-size: 32px;
	}

	.home-product-card {
		padding: 18px;
	}

	.home-product-card__copy h3 {
		font-size: 38px;
	}

	.home-product-card__actions {
		display: grid;
	}

	.home-product-card__shot img {
		aspect-ratio: 4 / 3;
	}

	.objection-grid {
		gap: 12px;
	}

	.home-secondary-plugins {
		display: grid;
	}

	.home-secondary-plugins div {
		justify-content: flex-start;
	}

	.more-plugin-card {
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.more-plugin-card img {
		width: 58px;
		height: 58px;
	}

	.why-card h3,
	.feature-card p {
		overflow-wrap: anywhere;
	}

	.product-content,
	.product-screenshots,
	.complexity-section,
	.pricing-section,
	.support-section,
	.support-intake-section,
	.downloads-section,
	.proof-docs-section {
		padding-inline: 14px;
	}

	.more-plugin-strip__grid--compact,
	.download-more__grid {
		grid-template-columns: 1fr;
	}

	.support-form__grid {
		grid-template-columns: 1fr;
	}

	.support-intake-grid {
		grid-template-columns: 1fr;
	}

	.support-intake-actions {
		display: grid;
	}

	.proofshield-page .doc-shell {
		display: block;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.garden-sprite {
		transform: none !important;
	}
}

.sg-language-link {
	min-width: 38px;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	padding-inline: 10px !important;
}

.docs-page {
	margin: 0;
	background: #f5f7fb;
	color: #101820;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.68;
}

.docs-page .skip-link {
	background: #fff;
	color: #101820;
}

.docs-page .docs-sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	width: 292px;
	background: #111923;
	color: #fff;
	border-right: 1px solid rgba(255, 255, 255, .08);
}

.docs-page .sidebar-brand {
	display: grid;
	gap: 10px;
	padding: 22px 22px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.docs-page .sidebar-brand img {
	width: 190px;
	max-width: 100%;
	padding: 6px;
	border-radius: 8px;
	background: #fff;
}

.docs-page .sidebar-brand strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.docs-page .sidebar-brand span,
.docs-page .sidebar-nav__label,
.docs-page .docs-no-results {
	color: #9aa7b7;
	font-size: 13px;
}

.docs-page .sidebar-search {
	display: grid;
	gap: 10px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.docs-page .sidebar-search input {
	width: 100%;
	min-height: 40px;
	padding: 9px 11px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 8px;
	color: #fff;
	background: rgba(255, 255, 255, .07);
	font: inherit;
}

.docs-page .sidebar-nav {
	overflow: auto;
	padding: 16px 12px 22px;
}

.docs-page .sidebar-nav__group {
	margin: 0 0 18px;
}

.docs-page .sidebar-nav__label {
	display: block;
	margin: 0 10px 7px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.docs-page .sidebar-nav a,
.docs-page .toc a {
	display: flex;
	align-items: center;
	min-height: 36px;
	padding: 7px 10px;
	border-radius: 8px;
	color: #d9e2ee;
	text-decoration: none;
	font-size: 14px;
	font-weight: 650;
}

.docs-page .sidebar-nav a:hover,
.docs-page .sidebar-nav a.is-active {
	color: #fff;
	background: rgba(255, 255, 255, .10);
}

.docs-page .doc-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 245px;
	gap: 34px;
	width: calc(100vw - 292px);
	max-width: 1180px;
	margin: 0 auto 0 292px;
	padding: 34px 36px 64px;
}

.docs-page .doc-shell > header {
	position: relative;
	grid-column: 1 / -1;
	padding: 34px;
	border: 1px solid #d7dde7;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(24, 36, 52, .08);
}

.docs-page .doc-top-actions {
	position: absolute;
	top: 18px;
	right: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.docs-page .doc-top-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 10px;
	border: 1px solid #d7dde7;
	border-radius: 8px;
	color: #0f4d7f;
	background: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.docs-page--deliveryking .docs-sidebar {
	background: #102019;
}

.docs-page--deliveryking .eyebrow,
.docs-page--deliveryking .toc a:hover,
.docs-page--deliveryking .toc a.is-active {
	color: #2d5f18;
	background: #eef9e8;
	border-color: rgba(109, 201, 16, .28);
}

.docs-page--deliveryking .switch-table td:first-child,
.docs-page--deliveryking .toc a:hover,
.docs-page--deliveryking .toc a.is-active,
.docs-page--deliveryking .doc-top-actions a {
	color: #2d5f18;
}

.docs-page .brand {
	display: flex;
	gap: 18px;
	align-items: center;
}

.docs-page .brand img {
	width: 250px;
	max-width: 30vw;
}

.docs-page h1 {
	margin: 0;
	color: #101820;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
}

.docs-page .subtitle {
	margin: 10px 0 0;
	max-width: 760px;
	color: #667085;
	font-size: 18px;
}

.docs-page .eyebrow {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 10px;
	border: 1px solid rgba(23, 105, 170, .22);
	border-radius: 999px;
	color: #0f4d7f;
	background: #e9f4ff;
	font-size: 13px;
	font-weight: 800;
}

.docs-page .toc {
	position: sticky;
	top: 24px;
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid #d7dde7;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(24, 36, 52, .08);
}

.docs-page .toc a {
	color: #344054;
}

.docs-page .toc a:hover,
.docs-page .toc a.is-active {
	color: #0f4d7f;
	background: #e9f4ff;
}

.docs-page .doc-content {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	gap: 22px;
	min-width: 0;
}

.docs-page .doc-section,
.docs-page .doc-content footer {
	min-width: 0;
	padding: 28px;
	border: 1px solid #d7dde7;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(24, 36, 52, .08);
}

.docs-page .doc-section h2 {
	margin: 0 0 12px;
	color: #101820;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
}

.docs-page .doc-section p {
	margin: 0 0 12px;
	color: #344054;
}

.docs-page .doc-section p:last-child {
	margin-bottom: 0;
}

.docs-page .doc-figure {
	margin: 22px 0;
	overflow: hidden;
	border: 1px solid #d7dde7;
	border-radius: 10px;
	background: #f8fafc;
}

.docs-page .doc-figure img {
	display: block;
	width: 100%;
	height: auto;
}

.image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: clamp(18px, 4vw, 48px);
	background: rgba(0, 0, 0, .82);
	backdrop-filter: blur(8px);
}

.image-lightbox[hidden] {
	display: none;
}

.image-lightbox__panel {
	position: relative;
	max-width: min(1180px, 96vw);
	max-height: 92vh;
}

.image-lightbox__panel img {
	display: block;
	max-width: 100%;
	max-height: 88vh;
	border-radius: 10px;
	box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
	background: #fff;
}

.image-lightbox__close {
	position: absolute;
	top: -14px;
	right: -14px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: 999px;
	color: #fff;
	background: rgba(0, 0, 0, .72);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.docs-page .doc-figure figcaption {
	padding: 10px 14px;
	border-top: 1px solid #d7dde7;
	color: #667085;
	font-size: 14px;
	line-height: 1.5;
}

.docs-page .doc-table-wrap {
	margin-top: 22px;
	max-width: 100%;
	overflow-x: auto;
	border: 1px solid #d7dde7;
	border-radius: 10px;
}

.docs-page .switch-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	background: #fff;
	font-size: 14px;
}

.docs-page .switch-table th,
.docs-page .switch-table td {
	padding: 13px 14px;
	border-bottom: 1px solid #e4e9f2;
	text-align: left;
	vertical-align: top;
}

.docs-page .switch-table th {
	color: #101820;
	background: #eef6ff;
	font-weight: 800;
}

.docs-page .switch-table tr:last-child td {
	border-bottom: 0;
}

.docs-page .switch-table td:first-child {
	width: 29%;
	color: #0f4d7f;
	font-weight: 800;
}

.docs-page .legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	color: #667085;
}

@media (max-width: 980px) {
	.docs-page .docs-sidebar {
		position: relative;
		width: auto;
	}

	.docs-page .doc-shell {
		display: block;
		width: auto;
		max-width: none;
		margin: 0;
		padding: 20px 14px 44px;
	}

	.docs-page .brand {
		display: grid;
	}

	.docs-page .brand img {
		width: 210px;
		max-width: 100%;
	}

	.docs-page .toc {
		position: relative;
		top: auto;
		margin: 18px 0;
	}
}
