:root {
	--color-bg: #03060b;
	--color-bg-soft: #08111d;
	--color-panel: #0d1624;
	--color-panel-strong: #111c2d;
	--color-border: rgba(148, 163, 184, 0.2);
	--color-border-strong: rgba(96, 165, 250, 0.4);
	--color-text: #f8fafc;
	--color-muted: #a9b7c9;
	--color-dim: #74849a;
	--color-blue: #2f80ff;
	--color-cyan: #31d3f6;
	--color-amber: #f3b45b;
	--shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.38);
	--shadow-blue: 0 18px 46px rgba(47, 128, 255, 0.22);
	--radius-card: 8px;
	--radius-control: 8px;
	--container: 1180px;
	--header-height: 76px;
}

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

html {
	scroll-behavior: smooth;
}

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

body.nav-open {
	overflow: hidden;
}

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

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

p {
	margin: 0 0 1rem;
	color: var(--color-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--color-text);
	font-weight: 760;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: 64px;
	max-width: 780px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 21px;
}

button,
input,
select,
textarea {
	font: inherit;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-control);
	background: rgba(3, 6, 11, 0.74);
	color: var(--color-text);
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
	min-height: 52px;
	padding: 0 15px;
}

textarea {
	padding: 14px 15px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--color-cyan);
	box-shadow: 0 0 0 3px rgba(49, 211, 246, 0.16);
	background: rgba(7, 17, 31, 0.95);
}

select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--color-muted) 50%), linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
	background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

label {
	display: block;
	margin-bottom: 8px;
	color: var(--color-text);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-blue);
	color: #ffffff;
	border-radius: 6px;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	min-height: var(--header-height);
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
	background: rgba(3, 6, 11, 0.82);
	backdrop-filter: blur(18px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	width: min(100% - 40px, 1260px);
	min-height: var(--header-height);
	margin-inline: auto;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--color-text);
	font-weight: 800;
}

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

.site-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 34px;
	border: 1px solid rgba(49, 211, 246, 0.38);
	border-radius: 7px;
	background: linear-gradient(135deg, rgba(47, 128, 255, 0.3), rgba(49, 211, 246, 0.12));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 14px;
	letter-spacing: 0.08em;
}

.site-logo__text {
	font-size: 16px;
	white-space: nowrap;
}

.site-nav {
	flex: 1 1 auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 13px;
	border-radius: 7px;
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 700;
	transition: color 180ms ease, background 180ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus {
	background: rgba(148, 163, 184, 0.09);
	color: var(--color-text);
}

.site-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.site-nav__mobile-actions {
	display: none;
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: var(--radius-control);
	cursor: pointer;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	transform: translateY(-1px);
}

.button--primary,
.wp-block-button__link {
	background: linear-gradient(135deg, var(--color-blue), #1cc8ea);
	color: #ffffff;
	box-shadow: var(--shadow-blue);
}

.button--primary:hover,
.button--primary:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	box-shadow: 0 20px 52px rgba(49, 211, 246, 0.28);
}

.button--secondary {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-text);
}

.button--ghost {
	border-color: rgba(148, 163, 184, 0.22);
	background: transparent;
	color: var(--color-text);
}

.button--large {
	min-height: 52px;
	padding-inline: 23px;
	font-size: 15px;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-control);
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--color-text);
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	position: relative;
	isolation: isolate;
	min-height: 720px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__media,
.hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(3, 6, 11, 0.95) 0%, rgba(3, 6, 11, 0.76) 43%, rgba(3, 6, 11, 0.22) 78%),
		linear-gradient(0deg, var(--color-bg) 0%, rgba(3, 6, 11, 0) 34%);
}

.hero__content {
	padding: 124px 0 148px;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--color-cyan);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.hero__subheadline {
	max-width: 620px;
	margin-top: 22px;
	font-size: 21px;
	color: #d8e5f5;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.search-section {
	position: relative;
	z-index: 2;
	margin-top: -72px;
	padding-bottom: 48px;
}

.search-panel,
.filter-bar {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	gap: 16px;
	align-items: end;
	padding: 22px;
	border: 1px solid rgba(96, 165, 250, 0.26);
	border-radius: var(--radius-card);
	background: rgba(9, 18, 31, 0.88);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(18px);
}

.form-note {
	grid-column: 1 / -1;
	min-height: 20px;
	margin: 0;
	color: var(--color-cyan);
	font-size: 14px;
}

.section {
	padding: 86px 0;
}

.section-dark {
	background: var(--color-bg);
}

.section-muted {
	background:
		linear-gradient(180deg, rgba(8, 17, 29, 0.92), rgba(3, 6, 11, 1));
	border-block: 1px solid rgba(148, 163, 184, 0.12);
}

.section-heading {
	max-width: 720px;
	margin-bottom: 34px;
}

.section-heading p:last-child {
	margin-bottom: 0;
}

.section-heading--split {
	display: flex;
	max-width: none;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-cyan);
	font-weight: 800;
}

.text-link:hover,
.text-link:focus {
	color: #ffffff;
}

.category-grid,
.benefit-grid,
.pricing-grid,
.content-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.category-card,
.benefit-card,
.pricing-card,
.post-card,
.empty-state,
.contact-panel,
.contact-form {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	background: linear-gradient(180deg, rgba(17, 28, 45, 0.94), rgba(9, 18, 31, 0.92));
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.category-card,
.benefit-card,
.pricing-card,
.post-card a,
.empty-state,
.contact-panel,
.contact-form {
	padding: 24px;
}

.category-card,
.post-card a {
	display: block;
	min-height: 100%;
}

.category-card,
.clip-card,
.pricing-card,
.post-card {
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus,
.clip-card:hover,
.pricing-card:hover,
.post-card:hover {
	transform: translateY(-4px);
	border-color: var(--color-border-strong);
	box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.category-card__icon {
	display: block;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	border: 1px solid rgba(49, 211, 246, 0.38);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(47, 128, 255, 0.42), rgba(49, 211, 246, 0.13)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 7px);
}

.category-card h3,
.benefit-card h3,
.pricing-card h3,
.pricing-card h2,
.post-card h2 {
	margin-bottom: 12px;
}

.category-card p,
.benefit-card p,
.pricing-card p,
.post-card p {
	margin-bottom: 0;
}

.clip-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.clip-grid--wide {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 24px;
}

.clip-card {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	background: var(--color-panel);
}

.clip-card__thumb {
	display: flex;
	align-items: end;
	justify-content: flex-start;
	min-height: 174px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(49, 211, 246, 0.2), rgba(47, 128, 255, 0.03)),
		url("../images/clip-placeholder.svg") center / cover no-repeat;
}

.clip-card__thumb span {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(3, 6, 11, 0.66);
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.clip-card__body {
	padding: 18px;
}

.clip-card__body h3,
.clip-card__body h2 {
	font-size: 18px;
	margin-bottom: 8px;
}

.clip-card__body p {
	margin-bottom: 18px;
	font-size: 14px;
}

.clip-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: var(--color-dim);
	font-size: 13px;
}

.clip-card__meta strong {
	color: var(--color-text);
	font-size: 18px;
}

.creator-cta {
	padding: 78px 0;
	background:
		linear-gradient(135deg, rgba(47, 128, 255, 0.24), rgba(49, 211, 246, 0.08)),
		var(--color-panel);
	border-block: 1px solid rgba(96, 165, 250, 0.28);
}

.creator-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.creator-cta h2 {
	margin-bottom: 14px;
}

.creator-cta p:last-child {
	max-width: 660px;
	margin-bottom: 0;
}

.pricing-card {
	position: relative;
	padding: 28px;
}

.pricing-card__price {
	margin: 18px 0 18px;
	color: #ffffff;
	font-size: 44px;
	font-weight: 900;
	line-height: 1;
}

.pricing-card__price span {
	margin-left: 6px;
	color: var(--color-dim);
	font-size: 15px;
	font-weight: 700;
}

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

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

.pricing-card li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--color-cyan);
}

.pricing-card .button {
	margin-top: 24px;
	width: 100%;
}

.faq-wrap {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 42px;
	align-items: start;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	background: rgba(17, 28, 45, 0.75);
}

.faq-list summary {
	cursor: pointer;
	padding: 18px 20px;
	color: var(--color-text);
	font-weight: 800;
}

.faq-list p {
	padding: 0 20px 20px;
	margin: 0;
}

.page-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(3, 6, 11, 0.94), rgba(7, 17, 31, 0.78)),
		url("../images/hero-cinematic.png") center / cover no-repeat;
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.page-hero--compact {
	padding: 104px 0 78px;
}

.page-hero h1 {
	margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
	max-width: 680px;
	font-size: 19px;
}

.content-narrow {
	max-width: 820px;
}

.entry-content {
	color: var(--color-muted);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--color-cyan);
	font-weight: 800;
}

.entry-content h2,
.entry-content h3 {
	margin: 1.5em 0 0.5em;
}

.featured-image {
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: var(--radius-card);
	border: 1px solid var(--color-border);
}

.post-card {
	overflow: hidden;
}

.post-card a {
	min-height: 100%;
}

.post-card .eyebrow {
	margin-bottom: 10px;
}

.post-card .text-link {
	margin-top: 20px;
}

.pagination-wrap {
	grid-column: 1 / -1;
	margin-top: 20px;
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--color-border);
	border-radius: 7px;
	color: var(--color-muted);
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus {
	border-color: var(--color-border-strong);
	color: var(--color-text);
}

.archive-description {
	max-width: 680px;
	color: var(--color-muted);
}

.empty-state {
	grid-column: 1 / -1;
	text-align: center;
}

.filter-bar {
	grid-template-columns: 1.4fr 0.8fr auto;
}

.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.pill-row span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 800;
}

.contact-layout {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 24px;
	align-items: start;
}

.contact-panel h2 {
	margin-bottom: 14px;
}

.contact-method {
	display: grid;
	gap: 4px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--color-border);
}

.contact-method strong {
	color: var(--color-text);
}

.contact-method span {
	color: var(--color-muted);
}

.contact-form {
	display: grid;
	gap: 12px;
}

.site-footer {
	padding: 66px 0 28px;
	background: #02050a;
	border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 36px;
}

.site-footer__brand p {
	max-width: 360px;
	margin-top: 18px;
}

.site-footer__column {
	display: grid;
	gap: 10px;
	align-content: start;
}

.site-footer__column h2 {
	margin-bottom: 6px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #ffffff;
}

.site-footer__column a {
	color: var(--color-muted);
	font-weight: 700;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
	color: var(--color-cyan);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer__bottom p {
	margin: 0;
	font-size: 14px;
}

.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu a {
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 700;
}

[data-animate] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 560ms ease, transform 560ms ease;
}

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

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

	[data-animate] {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1100px) {
	h1 {
		font-size: 52px;
	}

	h2 {
		font-size: 34px;
	}

	.clip-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	:root {
		--header-height: 68px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		width: min(100% - 28px, 1260px);
	}

	.nav-toggle {
		display: inline-block;
	}

	.site-nav {
		position: fixed;
		top: var(--header-height);
		right: 14px;
		left: 14px;
		display: none;
		padding: 14px;
		border: 1px solid var(--color-border);
		border-radius: var(--radius-card);
		background: rgba(7, 17, 31, 0.98);
		box-shadow: var(--shadow-soft);
	}

	.site-header.is-open .site-nav {
		display: block;
	}

	.site-actions {
		display: none;
	}

	.site-nav__list {
		display: grid;
		gap: 4px;
		justify-content: stretch;
	}

	.site-nav__list a {
		width: 100%;
		justify-content: flex-start;
		min-height: 44px;
	}

	.site-nav__mobile-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid var(--color-border);
	}

	.site-logo__text {
		font-size: 14px;
	}

	.hero {
		min-height: 650px;
	}

	.hero__content {
		padding: 92px 0 130px;
	}

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 30px;
	}

	.hero__subheadline,
	.page-hero p:not(.eyebrow) {
		font-size: 18px;
	}

	.search-panel,
	.filter-bar {
		grid-template-columns: 1fr;
	}

	.category-grid,
	.benefit-grid,
	.pricing-grid,
	.content-grid,
	.clip-grid--wide,
	.faq-wrap,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.section-heading--split,
	.creator-cta__inner,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.section {
		padding: 66px 0;
	}

	.page-hero--compact {
		padding: 82px 0 58px;
	}
}

@media (max-width: 600px) {
	.container {
		width: min(100% - 28px, var(--container));
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 27px;
	}

	.site-logo__mark {
		width: 42px;
		height: 32px;
		font-size: 13px;
	}

	.hero {
		min-height: 610px;
	}

	.hero__shade {
		background:
			linear-gradient(90deg, rgba(3, 6, 11, 0.96), rgba(3, 6, 11, 0.82)),
			linear-gradient(0deg, var(--color-bg) 0%, rgba(3, 6, 11, 0) 34%);
	}

	.hero__content {
		padding: 78px 0 120px;
	}

	.hero__actions,
	.button,
	.wp-block-button__link {
		width: 100%;
	}

	.search-section {
		margin-top: -56px;
	}

	.search-panel,
	.filter-bar,
	.category-card,
	.benefit-card,
	.pricing-card,
	.post-card a,
	.empty-state,
	.contact-panel,
	.contact-form {
		padding: 18px;
	}

	.clip-grid {
		grid-template-columns: 1fr;
	}

	.clip-card__thumb {
		min-height: 190px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
