@layer properties;
@layer theme, base, components, utilities;
/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
@layer theme {
	:root,
	:host {
		--font-sans:
			ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
			"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
		--font-mono:
			ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
			"Courier New", monospace;
		--color-blue-600: oklch(54.6% 0.245 262.881);
		--color-gray-600: oklch(44.6% 0.03 256.802);
		--spacing: 0.2rem;
		--text-2xl: 1.2rem;
		--text-2xl--line-height: calc(2 / 1.5);
		--text-3xl: 1.5rem;
		--text-3xl--line-height: calc(2.25 / 1.875);
		--font-weight-bold: 700;
		--radius-lg: 0.5rem;
		--radius-2xl: 1rem;
		--default-font-family: var(--font-sans);
		--default-mono-font-family: var(--font-mono);
	}
}
@layer base {
	*,
	::after,
	::before,
	::backdrop,
	::file-selector-button {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
		border: 0 solid;
	}
	html,
	:host {
		line-height: 1.5;
		-webkit-text-size-adjust: 100%;
		tab-size: 4;
		font-family: var(
			--default-font-family,
			ui-sans-serif,
			system-ui,
			sans-serif,
			"Apple Color Emoji",
			"Segoe UI Emoji",
			"Segoe UI Symbol",
			"Noto Color Emoji"
		);
		font-feature-settings: var(--default-font-feature-settings, normal);
		font-variation-settings: var(--default-font-variation-settings, normal);
		-webkit-tap-highlight-color: transparent;
	}
	hr {
		height: 0;
		color: inherit;
		border-top-width: 1px;
	}
	abbr:where([title]) {
		-webkit-text-decoration: underline dotted;
		text-decoration: underline dotted;
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: inherit;
		font-weight: inherit;
	}
	a {
		color: inherit;
		-webkit-text-decoration: inherit;
		text-decoration: inherit;
	}
	b,
	strong {
		font-weight: bolder;
	}
	code,
	kbd,
	samp,
	pre {
		font-family: var(
			--default-mono-font-family,
			ui-monospace,
			SFMono-Regular,
			Menlo,
			Monaco,
			Consolas,
			"Liberation Mono",
			"Courier New",
			monospace
		);
		font-feature-settings: var(--default-mono-font-feature-settings, normal);
		font-variation-settings: var(
			--default-mono-font-variation-settings,
			normal
		);
		font-size: 1em;
	}
	small {
		font-size: 80%;
	}
	sub,
	sup {
		font-size: 75%;
		line-height: 0;
		position: relative;
		vertical-align: baseline;
	}
	sub {
		bottom: -0.25em;
	}
	sup {
		top: -0.5em;
	}
	table {
		text-indent: 0;
		border-color: inherit;
		border-collapse: collapse;
	}
	:-moz-focusring {
		outline: auto;
	}
	progress {
		vertical-align: baseline;
	}
	summary {
		display: list-item;
	}
	ol,
	ul,
	menu {
		list-style: none;
	}
	img,
	svg,
	video,
	canvas,
	audio,
	iframe,
	embed,
	object {
		display: block;
		vertical-align: middle;
	}
	img,
	video {
		max-width: 100%;
		height: auto;
	}
	button,
	input,
	select,
	optgroup,
	textarea,
	::file-selector-button {
		font: inherit;
		font-feature-settings: inherit;
		font-variation-settings: inherit;
		letter-spacing: inherit;
		color: inherit;
		border-radius: 0;
		background-color: transparent;
		opacity: 1;
	}
	:where(select:is([multiple], [size])) optgroup {
		font-weight: bolder;
	}
	:where(select:is([multiple], [size])) optgroup option {
		padding-inline-start: 20px;
	}
	::file-selector-button {
		margin-inline-end: 4px;
	}
	::placeholder {
		opacity: 1;
	}
	@supports (not (-webkit-appearance: -apple-pay-button)) or
		(contain-intrinsic-size: 1px) {
		::placeholder {
			color: currentcolor;
			@supports (color: color-mix(in lab, red, red)) {
				color: color-mix(in oklab, currentcolor 50%, transparent);
			}
		}
	}
	textarea {
		resize: vertical;
	}
	::-webkit-search-decoration {
		-webkit-appearance: none;
	}
	::-webkit-date-and-time-value {
		min-height: 1lh;
		text-align: inherit;
	}
	::-webkit-datetime-edit {
		display: inline-flex;
	}
	::-webkit-datetime-edit-fields-wrapper {
		padding: 0;
	}
	::-webkit-datetime-edit,
	::-webkit-datetime-edit-year-field,
	::-webkit-datetime-edit-month-field,
	::-webkit-datetime-edit-day-field,
	::-webkit-datetime-edit-hour-field,
	::-webkit-datetime-edit-minute-field,
	::-webkit-datetime-edit-second-field,
	::-webkit-datetime-edit-millisecond-field,
	::-webkit-datetime-edit-meridiem-field {
		padding-block: 0;
	}
	::-webkit-calendar-picker-indicator {
		line-height: 1;
	}
	:-moz-ui-invalid {
		box-shadow: none;
	}
	button,
	input:where([type="button"], [type="reset"], [type="submit"]),
	::file-selector-button {
		appearance: button;
	}
	::-webkit-inner-spin-button,
	::-webkit-outer-spin-button {
		height: auto;
	}
	[hidden]:where(:not([hidden="until-found"])) {
		display: none !important;
	}
}
@layer utilities {
	.absolute {
		position: absolute;
	}
	.fixed {
		position: fixed;
	}
	.relative {
		position: relative;
	}
	.static {
		position: static;
	}
	.start {
		inset-inline-start: var(--spacing);
	}
	.mb-2 {
		margin-bottom: calc(var(--spacing) * 2);
	}
	.mb-4 {
		margin-bottom: calc(var(--spacing) * 4);
	}
	.mb-6 {
		margin-bottom: calc(var(--spacing) * 6);
	}
	.flex {
		display: flex;
	}
	.grid {
		display: grid;
	}
	.hidden {
		display: none;
	}
	.inline-block {
		display: inline-block;
	}
	.w-full {
		width: 100%;
	}
	.transform {
		transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,)
			var(--tw-skew-x,) var(--tw-skew-y,);
	}
	.flex-col {
		flex-direction: column;
	}
	.items-center {
		align-items: center;
	}
	.justify-between {
		justify-content: space-between;
	}
	.gap-8 {
		gap: calc(var(--spacing) * 8);
	}
	.rounded-2xl {
		border-radius: var(--radius-2xl);
	}
	.rounded-lg {
		border-radius: var(--radius-lg);
	}
	.border {
		border-style: var(--tw-border-style);
		border-width: 1px;
	}
	.object-cover {
		object-fit: cover;
	}
	.p-5 {
		padding: calc(var(--spacing) * 5);
	}
	.p-8 {
		padding: calc(var(--spacing) * 8);
	}
	.px-6 {
		padding-inline: calc(var(--spacing) * 6);
	}
	.py-2 {
		padding-block: calc(var(--spacing) * 2);
	}
	.text-2xl {
		font-size: var(--text-2xl);
		line-height: var(--tw-leading, var(--text-2xl--line-height));
	}
	.text-3xl {
		font-size: var(--text-3xl);
		line-height: var(--tw-leading, var(--text-3xl--line-height));
	}
	.font-bold {
		--tw-font-weight: var(--font-weight-bold);
		font-weight: var(--font-weight-bold);
	}
	.text-blue-600 {
		color: var(--color-blue-600);
	}
	.text-gray-600 {
		color: var(--color-gray-600);
	}
	.uppercase {
		text-transform: uppercase;
	}
	.italic {
		font-style: italic;
	}
	.ring {
		--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0
			calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
		box-shadow:
			var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
			var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
	}
	.filter {
		filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,)
			var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,)
			var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
	}
	.md\:w-\[45\%\] {
		@media (width >= 48rem) {
			width: 45%;
		}
	}
	.md\:w-\[55\%\] {
		@media (width >= 48rem) {
			width: 55%;
		}
	}
	.md\:flex-row {
		@media (width >= 48rem) {
			flex-direction: row;
		}
	}
}
:root {
	--cream: #fbf4e8;
	--espresso: #2a1a0a;
	--terracotta: #c4612f;
	--sage: #5e8b5e;
	--sage-light: #a8c9a8;
	--peach: #e8c4a0;
	--amber: #e89b4a;
	--amber-light: #f5d9a8;
	--rose-dust: #d4907a;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
	background-color: var(--cream);
	color: var(--espresso);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family: "Lora", Georgia, serif;
}
code {
	font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-12px) rotate(2deg);
	}
	66% {
		transform: translateY(-6px) rotate(-1deg);
	}
}
@keyframes float-delayed {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-8px) rotate(-2deg);
	}
	66% {
		transform: translateY(-14px) rotate(1deg);
	}
}
@keyframes paw-trail {
	0% {
		opacity: 0;
		transform: scale(0.5) rotate(-10deg);
	}
	30% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
	70% {
		opacity: 0.8;
	}
	100% {
		opacity: 0;
		transform: scale(0.8) rotate(5deg);
	}
}
@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes badge-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(196, 97, 47, 0.3);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(196, 97, 47, 0);
	}
}
@keyframes wag {
	0%,
	100% {
		transform-origin: bottom left;
		transform: rotate(0deg);
	}
	25% {
		transform-origin: bottom left;
		transform: rotate(15deg);
	}
	75% {
		transform-origin: bottom left;
		transform: rotate(-10deg);
	}
}
@keyframes blink {
	0%,
	90%,
	100% {
		transform: scaleY(1);
	}
	95% {
		transform: scaleY(0.1);
	}
}
@keyframes grain {
	0%,
	100% {
		transform: translate(0, 0);
	}
	10% {
		transform: translate(-1%, -1%);
	}
	20% {
		transform: translate(1%, 1%);
	}
	30% {
		transform: translate(-1%, 1%);
	}
	40% {
		transform: translate(1%, -1%);
	}
	50% {
		transform: translate(-1%, 0);
	}
	60% {
		transform: translate(1%, 0);
	}
	70% {
		transform: translate(0, 1%);
	}
	80% {
		transform: translate(0, -1%);
	}
	90% {
		transform: translate(-1%, 1%);
	}
}
@keyframes drift-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@keyframes reveal-width {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}
@keyframes full-rotation {
	from {
		rotate: 0deg;
	}
	to {
		rotate: 360deg;
	}
}

@keyframes full-rotation-reverse {
	from {
		rotate: 360deg;
	}
	to {
		rotate: 0deg;
	}
}

.pa-page {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.pa-grain {
	position: fixed;
	inset: -50%;
	width: 200%;
	height: 200%;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
	opacity: 0.04;
	pointer-events: none;
	z-index: 100;
	animation: grain 8s steps(1) infinite;
}
.pa-blob-1 {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(232, 155, 74, 0.12) 0%,
		transparent 70%
	);
	top: -200px;
	right: -100px;
	pointer-events: none;
}
.pa-blob-2 {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(94, 139, 94, 0.1) 0%,
		transparent 70%
	);
	bottom: 0;
	left: -80px;
	pointer-events: none;
}
.pa-paw-strip {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--terracotta),
		var(--amber),
		var(--sage),
		var(--terracotta)
	);
	background-size: 200% 100%;
}
.pa-animal {
	animation: float 6s ease-in-out infinite;
}
.pa-animal-2 {
	animation: float-delayed 7s ease-in-out infinite;
}
.pa-animate-1 {
	opacity: 0;
	animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.1s;
}
.pa-animate-2 {
	opacity: 0;
	animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.25s;
}
.pa-animate-3 {
	opacity: 0;
	animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.4s;
}
.pa-animate-4 {
	opacity: 0;
	animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.55s;
}
.pa-animate-5 {
	opacity: 0;
	animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: 0.7s;
}
.pa-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--terracotta);
	color: #fff;
	font-family: "Lora", serif;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 100px;
	animation: badge-pulse 3s ease-in-out infinite;
}
.pa-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	animation: badge-pulse 1.5s ease-in-out infinite;
}
.pa-headline {
	font-family: "DM Serif Display", "Fraunces", Georgia, serif;
	font-size: clamp(3.2rem, 9vw, 7.5rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: var(--espresso);
	margin: 0;
}
.pa-headline-italic {
	font-style: italic;
	color: var(--terracotta);
}
.pa-divider {
	width: 64px;
	height: 2px;
	background: var(--amber);
	border-radius: 2px;
}
.pa-body {
	font-family: "Lora", serif;
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(42, 26, 10, 0.65);
	max-width: 38ch;
}
.pa-form {
	display: flex;
	gap: 0;
	max-width: 420px;
	border: 1.5px solid rgba(42, 26, 10, 0.15);
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}
.pa-form:focus-within {
	border-color: var(--terracotta);
	box-shadow: 0 0 0 3px rgba(196, 97, 47, 0.12);
}
.pa-input {
	flex: 1;
	padding: 13px 16px;
	font-family: "Lora", serif;
	font-size: 0.9rem;
	color: var(--espresso);
	background: transparent;
	border: none;
	outline: none;
}
.pa-input::placeholder {
	color: rgba(42, 26, 10, 0.35);
}
.pa-submit {
	padding: 13px 20px;
	background: var(--terracotta);
	color: #fff;
	font-family: "Lora", serif;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}
.pa-submit:hover {
	background: #a84f24;
}
.pa-success {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 18px;
	background: rgba(94, 139, 94, 0.12);
	border: 1.5px solid rgba(94, 139, 94, 0.3);
	border-radius: 8px;
	color: var(--sage);
	font-family: "Lora", serif;
	font-size: 0.9rem;
	max-width: 420px;
}
.pa-social {
	display: flex;
	align-items: center;
	gap: 20px;
}
.pa-social-link {
	color: rgba(42, 26, 10, 0.4);
	text-decoration: none;
	font-family: "Lora", serif;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.2s;
	display: flex;
	align-items: center;
	gap: 6px;
}
.pa-social-link:hover {
	color: var(--terracotta);
}
.pa-scroll-strip {
	overflow: hidden;
	white-space: nowrap;
}
.pa-scroll-inner {
	display: inline-flex;
	animation: drift-left 20s linear infinite;
	gap: 0;
}
.pa-scroll-item {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 0 24px;
	font-family: "DM Serif Display", serif;
	font-style: italic;
	font-size: 0.85rem;
	color: rgba(42, 26, 10, 0.25);
	letter-spacing: 0.05em;
}
.pa-ear {
	position: absolute;
	top: -18px;
	animation: wag 3s ease-in-out infinite;
}
.pa-paw {
	position: absolute;
	opacity: 0;
	animation: paw-trail 4s ease-in-out infinite;
}
.pa-paw:nth-child(1) {
	animation-delay: 0s;
}
.pa-paw:nth-child(2) {
	animation-delay: 0.8s;
}
.pa-paw:nth-child(3) {
	animation-delay: 1.6s;
}
.pa-paw:nth-child(4) {
	animation-delay: 2.4s;
}
.pa-paw:nth-child(5) {
	animation-delay: 3.2s;
}
.pa-underline-highlight {
	position: relative;
	display: inline-block;
}
.pa-underline-highlight::after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 0;
	height: 8px;
	width: 100%;
	background: rgba(232, 155, 74, 0.35);
	z-index: -1;
	border-radius: 2px;
}
.pa-footer {
	padding: 24px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(42, 26, 10, 0.08);
}
.pa-footer-brand {
	font-family: "DM Serif Display", serif;
	font-size: 0.95rem;
	color: rgba(42, 26, 10, 0.4);
}
.pa-footer-copy {
	font-family: "Lora", serif;
	font-size: 0.75rem;
	color: rgba(42, 26, 10, 0.3);
	letter-spacing: 0.05em;
}
.pa-corner-deco {
	position: absolute;
	bottom: 80px;
	right: 40px;
	opacity: 0.06;
	pointer-events: none;
}

.pa-illustration-col {
	animation: full-rotation 120s linear infinite;
}

.pa-illustration-wrapper {
	animation: full-rotation-reverse 120s linear infinite;
}

@media (max-width: 768px) {
	.pa-content-grid {
		grid-template-columns: 1fr !important;
		gap: 48px !important;
		padding: 60px 24px !important;
	}
	.pa-illustration-col {
		order: -1;
	}
	.pa-footer {
		padding: 20px 24px;
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
	.pa-body {
		max-width: 100%;
	}
}
@property --tw-rotate-x {
	syntax: "*";
	inherits: false;
}
@property --tw-rotate-y {
	syntax: "*";
	inherits: false;
}
@property --tw-rotate-z {
	syntax: "*";
	inherits: false;
}
@property --tw-skew-x {
	syntax: "*";
	inherits: false;
}
@property --tw-skew-y {
	syntax: "*";
	inherits: false;
}
@property --tw-border-style {
	syntax: "*";
	inherits: false;
	initial-value: solid;
}
@property --tw-font-weight {
	syntax: "*";
	inherits: false;
}
@property --tw-shadow {
	syntax: "*";
	inherits: false;
	initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
	syntax: "*";
	inherits: false;
}
@property --tw-shadow-alpha {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%;
}
@property --tw-inset-shadow {
	syntax: "*";
	inherits: false;
	initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
	syntax: "*";
	inherits: false;
}
@property --tw-inset-shadow-alpha {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%;
}
@property --tw-ring-color {
	syntax: "*";
	inherits: false;
}
@property --tw-ring-shadow {
	syntax: "*";
	inherits: false;
	initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
	syntax: "*";
	inherits: false;
}
@property --tw-inset-ring-shadow {
	syntax: "*";
	inherits: false;
	initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
	syntax: "*";
	inherits: false;
}
@property --tw-ring-offset-width {
	syntax: "<length>";
	inherits: false;
	initial-value: 0px;
}
@property --tw-ring-offset-color {
	syntax: "*";
	inherits: false;
	initial-value: #fff;
}
@property --tw-ring-offset-shadow {
	syntax: "*";
	inherits: false;
	initial-value: 0 0 #0000;
}
@property --tw-blur {
	syntax: "*";
	inherits: false;
}
@property --tw-brightness {
	syntax: "*";
	inherits: false;
}
@property --tw-contrast {
	syntax: "*";
	inherits: false;
}
@property --tw-grayscale {
	syntax: "*";
	inherits: false;
}
@property --tw-hue-rotate {
	syntax: "*";
	inherits: false;
}
@property --tw-invert {
	syntax: "*";
	inherits: false;
}
@property --tw-opacity {
	syntax: "*";
	inherits: false;
}
@property --tw-saturate {
	syntax: "*";
	inherits: false;
}
@property --tw-sepia {
	syntax: "*";
	inherits: false;
}
@property --tw-drop-shadow {
	syntax: "*";
	inherits: false;
}
@property --tw-drop-shadow-color {
	syntax: "*";
	inherits: false;
}
@property --tw-drop-shadow-alpha {
	syntax: "<percentage>";
	inherits: false;
	initial-value: 100%;
}
@property --tw-drop-shadow-size {
	syntax: "*";
	inherits: false;
}
@layer properties {
	@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or
		((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
		*,
		::before,
		::after,
		::backdrop {
			--tw-rotate-x: initial;
			--tw-rotate-y: initial;
			--tw-rotate-z: initial;
			--tw-skew-x: initial;
			--tw-skew-y: initial;
			--tw-border-style: solid;
			--tw-font-weight: initial;
			--tw-shadow: 0 0 #0000;
			--tw-shadow-color: initial;
			--tw-shadow-alpha: 100%;
			--tw-inset-shadow: 0 0 #0000;
			--tw-inset-shadow-color: initial;
			--tw-inset-shadow-alpha: 100%;
			--tw-ring-color: initial;
			--tw-ring-shadow: 0 0 #0000;
			--tw-inset-ring-color: initial;
			--tw-inset-ring-shadow: 0 0 #0000;
			--tw-ring-inset: initial;
			--tw-ring-offset-width: 0px;
			--tw-ring-offset-color: #fff;
			--tw-ring-offset-shadow: 0 0 #0000;
			--tw-blur: initial;
			--tw-brightness: initial;
			--tw-contrast: initial;
			--tw-grayscale: initial;
			--tw-hue-rotate: initial;
			--tw-invert: initial;
			--tw-opacity: initial;
			--tw-saturate: initial;
			--tw-sepia: initial;
			--tw-drop-shadow: initial;
			--tw-drop-shadow-color: initial;
			--tw-drop-shadow-alpha: 100%;
			--tw-drop-shadow-size: initial;
		}
	}
}
