/* =========================================================
   Hero Section — Editorial v3
   White · Minimal · Lively · Organic (reference match)
   ========================================================= */

:root {
	--hero-ink: #14251b;
	--hero-text: #1a2332;
	--hero-muted: #6b7787;
	--hero-soft: #9aa4b2;
	--hero-green: #2f7a34;
	--hero-green-2: #3f9a44;
	--hero-green-3: #5cb85c;
	--hero-green-soft: rgba(63, 154, 68, 0.10);
	--hero-line: rgba(15, 23, 42, 0.07);
	--hero-shadow: 0 30px 70px -34px rgba(31, 74, 37, 0.35);
	--hero-shadow-soft: 0 12px 34px -22px rgba(15, 23, 42, 0.18);
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: calc(5rem + 15px + clamp(1rem, 2.5vw, 1.75rem)) var(--rbz-gutter) clamp(2rem, 4vw, 3.5rem);
	overflow: hidden;
	background: #ffffff;
	color: var(--hero-text);
}

/* ============================
   Inner container
   ============================ */

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: var(--rbz-container);
	min-height: calc(100vh - clamp(4rem, 8vw, 7rem));
	margin: 0 auto;
	gap: clamp(2rem, 4vh, 3rem);
	justify-content: center;
}

.hero__body {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 4.5rem);
}

/* ============================
   Content column (right in RTL)
   ============================ */

.hero__content {
	position: relative;
	max-width: 540px;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1.05rem 0.45rem 0.9rem;
	margin-bottom: 1.75rem;
	border: 1px solid rgba(63, 154, 68, 0.2);
	border-radius: 999px;
	background: rgba(63, 154, 68, 0.06);
	color: var(--hero-green);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.hero__badge-pulse {
	position: relative;
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--hero-green-2);
}

.hero__badge-pulse::before,
.hero__badge-pulse::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: var(--hero-green-2);
	opacity: 0.3;
	animation: hero-pulse 2.4s ease-out infinite;
}

.hero__badge-pulse::after {
	animation-delay: 1.2s;
}

.hero__badge-icon {
	font-size: 0.9375rem;
	color: var(--hero-green);
}

/* Title */

.hero__title {
	margin-bottom: 1.5rem;
}

.hero__title-row {
	display: block;
	line-height: 1.28;
	color: var(--hero-ink);
	font-size: clamp(2.1rem, 4.6vw, 3.6rem);
	font-weight: 800;
	letter-spacing: -0.035em;
}

.hero__title-row--accent {
	position: relative;
	margin-top: 0.1em;
}

.hero__title-text {
	display: inline-block;
}

.hero__title-text--accent {
	background: linear-gradient(120deg, var(--hero-green) 0%, var(--hero-green-2) 55%, var(--hero-green-3) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--hero-green);
}

.hero__title-underline {
	display: block;
	width: min(58%, 260px);
	height: 12px;
	margin-top: 0.3rem;
	pointer-events: none;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 12' fill='none'><path d='M3 7 Q 70 2, 132 6 T 257 5' stroke='%233f9a44' stroke-width='3' stroke-linecap='round' fill='none'/></svg>") no-repeat right center / contain;
	opacity: 0;
	transform: translateX(8px) scaleX(0.6);
	transform-origin: right center;
}

.hero--ready .hero__title-underline {
	animation: hero-underline 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards 1.1s;
}

/* Split word animation (keeps Persian letter joining intact) */

.hero__title-text[data-hero-split] .hero__word {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.5em);
	transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--ready .hero__title-text[data-hero-split] .hero__word {
	opacity: 1;
	transform: translateY(0);
	transition-delay: calc(var(--char-i, 0) * 90ms + 0.2s);
}

/* Description */

.hero__desc {
	margin-bottom: 2rem;
	max-width: 470px;
	color: var(--hero-muted);
	font-size: 1rem;
	font-weight: 400;
	line-height: 2.1;
}

/* Actions */

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.875rem;
	margin-bottom: 1.5rem;
}

.hero__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.75rem;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.hero__btn--primary {
	background: linear-gradient(135deg, var(--hero-green) 0%, var(--hero-green-2) 100%);
	color: #ffffff;
	border: 1px solid transparent;
	box-shadow: 0 14px 30px -14px rgba(47, 122, 52, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero__btn--primary:hover {
	box-shadow: 0 20px 40px -14px rgba(47, 122, 52, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero__btn-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0.35) 55%, transparent 80%);
	transform: translateX(-120%);
	z-index: -1;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__btn--primary:hover .hero__btn-glow {
	transform: translateX(120%);
}

.hero__btn-icon {
	font-size: 1rem;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__btn--primary:hover .hero__btn-icon {
	transform: translateX(-4px);
}

.hero__btn--ghost {
	border: 1px solid var(--hero-line);
	background: #ffffff;
	color: var(--hero-text);
	box-shadow: var(--hero-shadow-soft);
}

.hero__btn--ghost:hover {
	border-color: rgba(63, 154, 68, 0.35);
	box-shadow: 0 16px 32px -20px rgba(15, 23, 42, 0.22);
}

.hero__btn-play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(63, 154, 68, 0.12);
	color: var(--hero-green);
	transition: background 0.3s ease, transform 0.3s ease;
}

.hero__btn-play .rbz-icon {
	font-size: 1rem;
}

.hero__btn--ghost:hover .hero__btn-play {
	background: rgba(63, 154, 68, 0.22);
	transform: scale(1.08);
}

.hero__note {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hero-soft);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.6;
}

.hero__note-icon {
	flex-shrink: 0;
	color: var(--hero-green-2);
	font-size: 0.9375rem;
}

/* ============================
   Visual column (left in RTL)
   ============================ */

.hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 460px;
}

.hero__visual-stage {
	position: relative;
	width: 100%;
	max-width: 560px;
	aspect-ratio: 6 / 5;
}

.hero__visual-ring {
	position: absolute;
	inset: -22px -22px 22px 22px;
	border: 1.5px dashed rgba(63, 154, 68, 0.22);
	border-radius: clamp(3rem, 7vw, 7rem) 2rem 2rem 2rem;
	pointer-events: none;
	animation: hero-ring-float 9s ease-in-out infinite;
}

.hero__frame {
	position: absolute;
	inset: 0;
	border-radius: clamp(3rem, 7vw, 7rem) 2rem 2rem 2rem;
	background: #eef2ef;
	box-shadow: var(--hero-shadow);
	overflow: hidden;
	will-change: transform;
}

.hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__visual:hover .hero__image {
	transform: scale(1.08);
}

.hero__frame-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.4) 50%, transparent 58%);
	opacity: 0;
	transform: translateX(-40%);
	transition: opacity 0.4s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.hero__visual:hover .hero__frame-shine {
	opacity: 1;
	transform: translateX(40%);
}

.hero__media-label {
	position: absolute;
	top: 1.25rem;
	inset-inline-start: 1.25rem;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--hero-green);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: var(--hero-shadow-soft);
}

.hero__media-label .rbz-icon {
	font-size: 0.875rem;
	color: var(--hero-green-2);
}

/* Floating leaves */

.hero__leaves {
	position: absolute;
	inset: -6% -8%;
	pointer-events: none;
	z-index: 4;
	will-change: transform;
}

.hero__leaf {
	position: absolute;
	display: block;
	color: var(--hero-green-2);
	filter: drop-shadow(0 8px 14px rgba(47, 122, 52, 0.22));
	opacity: 0;
	will-change: transform;
}

.hero__leaf-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hero--ready .hero__leaf {
	opacity: 1;
	transition: opacity 0.8s ease;
}

.hero__leaf--1 { width: 54px; height: 54px; top: -2%; inset-inline-end: 10%; color: var(--hero-green-3); transform: rotate(20deg); animation: hero-leaf-a 7s ease-in-out infinite; transition-delay: 0.9s; }
.hero__leaf--2 { width: 40px; height: 40px; top: 14%; inset-inline-start: -4%; color: var(--hero-green-2); transform: rotate(-40deg); animation: hero-leaf-b 8.5s ease-in-out infinite 0.4s; transition-delay: 1s; }
.hero__leaf--3 { width: 46px; height: 46px; bottom: 8%; inset-inline-end: -5%; color: var(--hero-green); transform: rotate(140deg); animation: hero-leaf-c 9s ease-in-out infinite 0.8s; transition-delay: 1.1s; }
.hero__leaf--4 { width: 34px; height: 34px; bottom: -2%; inset-inline-start: 20%; color: var(--hero-green-3); transform: rotate(200deg); animation: hero-leaf-a 7.5s ease-in-out infinite 1.1s; transition-delay: 1.2s; }
.hero__leaf--5 { width: 30px; height: 30px; top: 40%; inset-inline-end: -7%; color: var(--hero-green-2); transform: rotate(60deg); animation: hero-leaf-b 8s ease-in-out infinite 0.6s; transition-delay: 1.3s; }
.hero__leaf--6 { width: 26px; height: 26px; top: 6%; inset-inline-start: 24%; color: var(--hero-green-3); transform: rotate(-15deg); animation: hero-leaf-c 6.5s ease-in-out infinite 1.4s; transition-delay: 1.4s; }

/* ============================
   Feature strip (bottom)
   ============================ */

.hero__strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	padding: 1.35rem 1rem;
	border: 1px solid var(--hero-line);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: var(--hero-shadow-soft);
	position: relative;
	overflow: hidden;
}

.hero__strip::before {
	content: '';
	position: absolute;
	top: 0;
	inset-inline: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--hero-green-2), var(--hero-green-3), transparent);
	opacity: 0.5;
}

.hero__strip-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.4rem 1rem;
	transition: transform 0.3s ease;
}

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

.hero__strip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 13px;
	background: linear-gradient(135deg, rgba(63, 154, 68, 0.12), rgba(92, 184, 92, 0.08));
	color: var(--hero-green);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.hero__strip-item:hover .hero__strip-icon {
	transform: rotate(-6deg) scale(1.08);
	background: linear-gradient(135deg, rgba(63, 154, 68, 0.2), rgba(92, 184, 92, 0.14));
}

.hero__strip-icon .rbz-icon {
	font-size: 1.3rem;
}

.hero__strip-text {
	display: flex;
	flex-direction: column;
	gap: 0.12rem;
	text-align: start;
}

.hero__strip-title {
	color: var(--hero-text);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
}

.hero__strip-desc {
	color: var(--hero-soft);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
}

.hero__strip-sep {
	position: absolute;
	inset-inline-end: 0;
	top: 18%;
	bottom: 18%;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--hero-line) 30%, var(--hero-line) 70%, transparent);
}

/* ============================
   Content reveal animations
   ============================ */

.hero__badge,
.hero__desc,
.hero__actions,
.hero__note {
	opacity: 0;
	transform: translateY(14px);
}

.hero--ready .hero__badge   { animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both 0.1s; }
.hero--ready .hero__desc    { animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.7s; }
.hero--ready .hero__actions { animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.85s; }
.hero--ready .hero__note    { animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 1s; }

.hero__visual-stage {
	opacity: 0;
	transform: translateY(24px) scale(0.98);
}

.hero--ready .hero__visual-stage {
	animation: hero-stage-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) both 0.25s;
}

.hero__strip {
	opacity: 0;
	transform: translateY(20px);
}

.hero--ready .hero__strip {
	animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) both 1.1s;
}

.hero__strip-item {
	opacity: 0;
	transform: translateY(10px);
}

.hero--ready .hero__strip-item {
	animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: calc(1.3s + var(--i, 0) * 0.08s);
}

/* ============================
   Keyframes
   ============================ */

@keyframes hero-rise {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-stage-in {
	from { opacity: 0; transform: translateY(24px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-underline {
	from { opacity: 0; transform: translateX(8px) scaleX(0.6); }
	to   { opacity: 0.95; transform: translateX(0) scaleX(1); }
}

@keyframes hero-underline-center {
	from { opacity: 0; transform: scaleX(0.6); }
	to   { opacity: 0.95; transform: scaleX(1); }
}

@keyframes hero-pulse {
	0%   { transform: scale(0.6); opacity: 0.5; }
	80%  { transform: scale(2.2); opacity: 0; }
	100% { transform: scale(2.2); opacity: 0; }
}

@keyframes hero-ring-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-6px) rotate(0.6deg); }
}

@keyframes hero-leaf-a {
	0%, 100% { transform: translate(0, 0) rotate(20deg); }
	50%      { transform: translate(-6px, -12px) rotate(30deg); }
}

@keyframes hero-leaf-b {
	0%, 100% { transform: translate(0, 0) rotate(-40deg); }
	50%      { transform: translate(5px, -14px) rotate(-28deg); }
}

@keyframes hero-leaf-c {
	0%, 100% { transform: translate(0, 0) rotate(140deg); }
	50%      { transform: translate(-4px, -10px) rotate(152deg); }
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 1080px) {
	.hero {
		min-height: auto;
		align-items: flex-start;
		padding-top: calc(4.5rem + clamp(0.875rem, 2.5vw, 1.5rem));
		padding-bottom: clamp(2rem, 5vw, 3rem);
	}

	.hero__inner {
		min-height: 0;
		justify-content: flex-start;
		gap: clamp(1.75rem, 4vw, 2.5rem);
	}

	.hero__body {
		display: flex;
		flex-direction: column;
		gap: clamp(1.5rem, 4vw, 2.25rem);
	}

	.hero__visual {
		order: 1;
		width: 100%;
		min-height: 0;
	}

	.hero__content {
		order: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: none;
		text-align: center;
	}

	.hero__badge {
		margin-bottom: 1.25rem;
	}

	.hero__title {
		margin-bottom: 1.125rem;
		width: 100%;
	}

	.hero__title-row {
		text-align: center;
	}

	.hero__title-underline {
		margin-inline: auto;
		transform-origin: center center;
		background-position: center;
	}

	.hero--ready .hero__title-underline {
		animation-name: hero-underline-center;
	}

	.hero__desc {
		margin-bottom: 1.5rem;
		max-width: 36rem;
		line-height: 1.95;
	}

	.hero__actions {
		justify-content: center;
		width: 100%;
		margin-bottom: 1.125rem;
	}

	.hero__note {
		justify-content: center;
		text-align: center;
	}

	.hero__strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
		padding: 1rem 0.75rem;
	}

	.hero__strip-sep {
		display: none;
	}

	.hero__strip-item {
		padding: 0.75rem;
		border-radius: 12px;
	}

	.hero__strip-item:nth-child(odd) {
		border-inline-end: 1px solid var(--hero-line);
	}

	.hero__strip-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--hero-line);
	}

	.hero__visual-stage {
		width: 100%;
		max-width: min(520px, 100%);
		margin-inline: auto;
		aspect-ratio: 5 / 4;
	}

	.hero__visual-ring {
		inset: -14px -14px 14px 14px;
	}
}

@media (max-width: 720px) {
	.hero {
		padding-top: calc(4.25rem + clamp(0.875rem, 2.5vw, 1.25rem));
	}

	.hero__body {
		gap: 1.25rem;
	}

	.hero__visual-stage {
		max-width: 100%;
		aspect-ratio: 4 / 3;
	}

	.hero__visual-ring {
		inset: -10px -10px 10px 10px;
		border-radius: 1.75rem 1rem 1rem 1rem;
	}

	.hero__frame {
		border-radius: 1.75rem 1rem 1rem 1rem;
	}

	.hero__leaves {
		opacity: 0.55;
		transform: scale(0.85);
	}

	.hero__title-row {
		font-size: clamp(1.75rem, 7.5vw, 2.35rem);
		line-height: 1.32;
	}

	.hero__title-underline {
		width: min(72%, 220px);
		height: 10px;
		margin-top: 0.35rem;
		margin-inline: auto;
		transform-origin: center center;
		background-position: center;
	}

	.hero__desc {
		font-size: 0.9375rem;
		line-height: 1.85;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.625rem;
	}

	.hero__btn {
		justify-content: center;
		width: 100%;
		padding: 0.875rem 1.25rem;
	}

	.hero__note {
		font-size: 0.75rem;
	}

	.hero__strip {
		grid-template-columns: 1fr;
		padding: 0.75rem;
		border-radius: 16px;
	}

	.hero__strip-item {
		justify-content: flex-start;
		padding: 0.875rem 0.75rem;
	}

	.hero__strip-item:nth-child(odd) {
		border-inline-end: none;
	}

	.hero__strip-item:not(:last-child) {
		border-bottom: 1px solid var(--hero-line);
	}

	.hero__strip-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--hero-line);
	}
}

@media (max-width: 480px) {
	.hero {
		padding-inline: max(1rem, var(--rbz-gutter));
	}

	.hero__inner {
		gap: 1.5rem;
	}

	.hero__visual-stage {
		aspect-ratio: 1 / 1;
	}

	.hero__leaves {
		display: none;
	}

	.hero__media-label {
		top: 0.875rem;
		inset-inline-start: 0.875rem;
		padding: 0.375rem 0.75rem;
		font-size: 0.6875rem;
	}

	.hero__badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.875rem 0.4rem 0.75rem;
	}

	.hero__strip-icon {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}

	.hero__strip-icon .rbz-icon {
		font-size: 1.125rem;
	}

	.hero__strip-title {
		font-size: 0.8125rem;
	}

	.hero__strip-desc {
		font-size: 0.6875rem;
	}
}

/* ============================
   Reduced motion
   ============================ */

@media (prefers-reduced-motion: reduce) {
	.hero *,
	.hero *::before,
	.hero *::after {
		animation: none !important;
		transition: none !important;
	}

	.hero__badge,
	.hero__desc,
	.hero__actions,
	.hero__note,
	.hero__title-underline,
	.hero__visual-stage,
	.hero__strip,
	.hero__strip-item,
	.hero__leaf {
		opacity: 1;
		transform: none;
	}

	.hero__title-text[data-hero-split] .hero__word {
		opacity: 1;
		transform: none;
	}
}

/* ============================
   Dark mode
   ============================ */

html.rbz-dark {
	--hero-ink: #e2e8f0;
	--hero-text: #e2e8f0;
	--hero-muted: #94a3b8;
	--hero-soft: #64748b;
	--hero-line: rgba(255, 255, 255, 0.1);
	--hero-shadow: none;
	--hero-shadow-soft: none;
}

html.rbz-dark .hero {
	background: transparent;
	color: var(--hero-text);
}

html.rbz-dark .hero__title-row,
html.rbz-dark .hero__title-text {
	color: #e2e8f0;
}

html.rbz-dark .hero__title-text--accent {
	background: linear-gradient(120deg, #5cb85c 0%, #3f9a44 55%, #7dd87d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #5cb85c;
}

html.rbz-dark .hero__badge {
	background: rgba(63, 154, 68, 0.1);
	border-color: rgba(63, 154, 68, 0.22);
	color: #a7e0aa;
}

html.rbz-dark .hero__desc {
	color: #94a3b8;
}

html.rbz-dark .hero__note {
	color: #64748b;
}

html.rbz-dark .hero__note-icon {
	color: #5cb85c;
}

html.rbz-dark .hero__btn--ghost {
	background: rgba(20, 28, 22, 0.72);
	border-color: rgba(63, 154, 68, 0.18);
	color: #e2e8f0;
	box-shadow: none;
}

html.rbz-dark .hero__btn--ghost:hover {
	border-color: rgba(63, 154, 68, 0.32);
	background: rgba(24, 34, 26, 0.88);
	box-shadow: none;
}

html.rbz-dark .hero__btn-play {
	background: rgba(63, 154, 68, 0.16);
	color: #a7e0aa;
}

html.rbz-dark .hero__btn--primary {
	box-shadow: none;
}

html.rbz-dark .hero__btn--primary:hover {
	box-shadow: none;
}

html.rbz-dark .hero__frame {
	background: rgba(20, 28, 22, 0.55);
	box-shadow: none;
}

html.rbz-dark .hero__visual-ring {
	border-color: rgba(63, 154, 68, 0.18);
}

html.rbz-dark .hero__media-label {
	background: rgba(20, 28, 22, 0.88);
	border: 1px solid rgba(63, 154, 68, 0.15);
	color: #a7e0aa;
	box-shadow: none;
}

html.rbz-dark .hero__media-label .rbz-icon {
	color: #5cb85c;
}

html.rbz-dark .hero__leaf {
	color: #5cb85c;
	filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

html.rbz-dark .hero__strip {
	background: rgba(20, 28, 22, 0.78);
	border-color: rgba(63, 154, 68, 0.15);
	box-shadow: none;
}

html.rbz-dark .hero__strip::before {
	opacity: 0.35;
}

html.rbz-dark .hero__strip-title {
	color: rgba(255, 255, 255, 0.92);
}

html.rbz-dark .hero__strip-desc {
	color: rgba(255, 255, 255, 0.55);
}

html.rbz-dark .hero__strip-icon {
	background: rgba(63, 154, 68, 0.14);
	color: #a7e0aa;
}

html.rbz-dark .hero__strip-item:hover .hero__strip-icon {
	background: rgba(63, 154, 68, 0.22);
}

html.rbz-dark .hero__strip-sep {
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.08) 70%, transparent);
}

@media (max-width: 1080px) {
	html.rbz-dark .hero__strip-item:nth-child(odd) {
		border-inline-end-color: rgba(255, 255, 255, 0.08);
	}

	html.rbz-dark .hero__strip-item:nth-child(-n+2) {
		border-bottom-color: rgba(255, 255, 255, 0.08);
	}
}

@media (max-width: 720px) {
	html.rbz-dark .hero__strip-item:not(:last-child) {
		border-bottom-color: rgba(255, 255, 255, 0.08);
	}
}
