.e-471f3f12
{
	width: 100%;
	min-height: calc(100vh - 48px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--ot-spacing-l);
}

.e-471f3f12 .holder
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	max-width: 400px;
}

/* Large code number */
.e-471f3f12 .holder > .code
{
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
	color: var(--ot-text-1);
	opacity: 0.06;
	letter-spacing: -4px;
	user-select: none;
}

.e-471f3f12 .holder > .title
{
	font-size: 20px;
	font-weight: 600;
	color: var(--ot-text-1);
	line-height: 1.3;
	margin-top: -8px;
}

.e-471f3f12 .holder > .description
{
	font-size: 14px;
	line-height: 1.6;
	color: var(--ot-text-2);
	margin-top: -4px;
}
/* Flex utilities */
.ot-flex { display: flex; }
.ot-flex-col { flex-direction: column; }
.ot-flex-row { flex-direction: row; }
.ot-flex-wrap { flex-wrap: wrap; }
.ot-flex-1 { flex: 1; }
.ot-items-start { align-items: flex-start; }
.ot-items-center { align-items: center; }
.ot-items-end { align-items: flex-end; }
.ot-justify-start { justify-content: flex-start; }
.ot-justify-center { justify-content: center; }
.ot-justify-end { justify-content: flex-end; }
.ot-justify-between { justify-content: space-between; }

/* Grid solutions */
.ot-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--ot-spacing-m); }
.ot-grid-auto-s { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--ot-spacing-s); }
.ot-grid-auto-m { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--ot-spacing-m); }
.ot-grid-auto-l { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--ot-spacing-l); }
.ot-grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.ot-grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.ot-grid-cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

/* Container layouts */
.ot-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-s { width: 100%; max-width: 768px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-m { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-l { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 calc(var(--ot-spacing-m) * 2); }
.ot-container-full { width: 100%; padding: 0 calc(var(--ot-spacing-m) * 2); }

/* Scrollbar */
.ot-scrollbar { overflow: auto; }
.ot-scrollbar::-webkit-scrollbar { width: 8px; height: 8px; }
.ot-scrollbar::-webkit-scrollbar-track { background: var(--ot-bg-1); }
.ot-scrollbar::-webkit-scrollbar-thumb { background: var(--ot-bg-4); border-radius: 4px; }
.ot-scrollbar::-webkit-scrollbar-thumb:hover { background: var(--ot-bg-4-hover); }
.ot-p-0 { padding: 0; }
.ot-p-x { padding: var(--ot-spacing-x); }
.ot-p-s { padding: var(--ot-spacing-s); }
.ot-p-m { padding: var(--ot-spacing-m); }
.ot-p-l { padding: var(--ot-spacing-l); }

.ot-px-0 { padding-left: 0; padding-right: 0; }
.ot-px-x { padding-left: var(--ot-spacing-x); padding-right: var(--ot-spacing-x); }
.ot-px-s { padding-left: var(--ot-spacing-s); padding-right: var(--ot-spacing-s); }
.ot-px-m { padding-left: var(--ot-spacing-m); padding-right: var(--ot-spacing-m); }
.ot-px-l { padding-left: var(--ot-spacing-l); padding-right: var(--ot-spacing-l); }

.ot-py-0 { padding-top: 0; padding-bottom: 0; }
.ot-py-x { padding-top: var(--ot-spacing-x); padding-bottom: var(--ot-spacing-x); }
.ot-py-s { padding-top: var(--ot-spacing-s); padding-bottom: var(--ot-spacing-s); }
.ot-py-m { padding-top: var(--ot-spacing-m); padding-bottom: var(--ot-spacing-m); }
.ot-py-l { padding-top: var(--ot-spacing-l); padding-bottom: var(--ot-spacing-l); }

.ot-pt-0 { padding-top: 0; }
.ot-pt-x { padding-top: var(--ot-spacing-x); }
.ot-pt-s { padding-top: var(--ot-spacing-s); }
.ot-pt-m { padding-top: var(--ot-spacing-m); }
.ot-pt-l { padding-top: var(--ot-spacing-l); }

.ot-pr-0 { padding-right: 0; }
.ot-pr-x { padding-right: var(--ot-spacing-x); }
.ot-pr-s { padding-right: var(--ot-spacing-s); }
.ot-pr-m { padding-right: var(--ot-spacing-m); }
.ot-pr-l { padding-right: var(--ot-spacing-l); }

.ot-pb-0 { padding-bottom: 0; }
.ot-pb-x { padding-bottom: var(--ot-spacing-x); }
.ot-pb-s { padding-bottom: var(--ot-spacing-s); }
.ot-pb-m { padding-bottom: var(--ot-spacing-m); }
.ot-pb-l { padding-bottom: var(--ot-spacing-l); }

.ot-pl-0 { padding-left: 0; }
.ot-pl-x { padding-left: var(--ot-spacing-x); }
.ot-pl-s { padding-left: var(--ot-spacing-s); }
.ot-pl-m { padding-left: var(--ot-spacing-m); }
.ot-pl-l { padding-left: var(--ot-spacing-l); }

.ot-m-0 { margin: 0; }
.ot-m-auto { margin: auto; }
.ot-m-x { margin: var(--ot-spacing-x); }
.ot-m-s { margin: var(--ot-spacing-s); }
.ot-m-m { margin: var(--ot-spacing-m); }
.ot-m-l { margin: var(--ot-spacing-l); }

.ot-mx-0 { margin-left: 0; margin-right: 0; }
.ot-mx-auto { margin-left: auto; margin-right: auto; }
.ot-mx-x { margin-left: var(--ot-spacing-x); margin-right: var(--ot-spacing-x); }
.ot-mx-s { margin-left: var(--ot-spacing-s); margin-right: var(--ot-spacing-s); }
.ot-mx-m { margin-left: var(--ot-spacing-m); margin-right: var(--ot-spacing-m); }
.ot-mx-l { margin-left: var(--ot-spacing-l); margin-right: var(--ot-spacing-l); }

.ot-my-0 { margin-top: 0; margin-bottom: 0; }
.ot-my-auto { margin-top: auto; margin-bottom: auto; }
.ot-my-x { margin-top: var(--ot-spacing-x); margin-bottom: var(--ot-spacing-x); }
.ot-my-s { margin-top: var(--ot-spacing-s); margin-bottom: var(--ot-spacing-s); }
.ot-my-m { margin-top: var(--ot-spacing-m); margin-bottom: var(--ot-spacing-m); }
.ot-my-l { margin-top: var(--ot-spacing-l); margin-bottom: var(--ot-spacing-l); }

.ot-mt-0 { margin-top: 0; }
.ot-mt-auto { margin-top: auto; }
.ot-mt-x { margin-top: var(--ot-spacing-x); }
.ot-mt-s { margin-top: var(--ot-spacing-s); }
.ot-mt-m { margin-top: var(--ot-spacing-m); }
.ot-mt-l { margin-top: var(--ot-spacing-l); }

.ot-mr-0 { margin-right: 0; }
.ot-mr-auto { margin-right: auto; }
.ot-mr-x { margin-right: var(--ot-spacing-x); }
.ot-mr-s { margin-right: var(--ot-spacing-s); }
.ot-mr-m { margin-right: var(--ot-spacing-m); }
.ot-mr-l { margin-right: var(--ot-spacing-l); }

.ot-mb-0 { margin-bottom: 0; }
.ot-mb-auto { margin-bottom: auto; }
.ot-mb-x { margin-bottom: var(--ot-spacing-x); }
.ot-mb-s { margin-bottom: var(--ot-spacing-s); }
.ot-mb-m { margin-bottom: var(--ot-spacing-m); }
.ot-mb-l { margin-bottom: var(--ot-spacing-l); }

.ot-ml-0 { margin-left: 0; }
.ot-ml-auto { margin-left: auto; }
.ot-ml-x { margin-left: var(--ot-spacing-x); }
.ot-ml-s { margin-left: var(--ot-spacing-s); }
.ot-ml-m { margin-left: var(--ot-spacing-m); }
.ot-ml-l { margin-left: var(--ot-spacing-l); }

.ot-gap-0 { gap: 0; }
.ot-gap-x { gap: var(--ot-spacing-x); }
.ot-gap-s { gap: var(--ot-spacing-s); }
.ot-gap-m { gap: var(--ot-spacing-m); }
.ot-gap-l { gap: var(--ot-spacing-l); }
@media (max-width: 575.98px) {}
@media (min-width: 576px) and (max-width: 767.98px) {}
@media (min-width: 768px) and (max-width: 991.98px) {}
@media (min-width: 992px) and (max-width: 1199.98px) {}
@media (min-width: 1200px) and (max-width: 1399.98px) {}
@media (min-width: 1400px) {}
*,
*::before,
*::after
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html
{
    height: 100%;
    scroll-behavior: smooth;
    font-size: 100%;
    tab-size: 4;
}

body
{
    min-height: 100vh;
    font-family: var(--ot-font-primary), system-ui, sans-serif;
    font-size: var(--ot-size-m);
    line-height: 1.5;
    color: var(--ot-text-1);
    background: var(--ot-bg-1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:focus-visible
{
    outline: 2px solid var(--ot-brand);
    outline-offset: 2px;
}

:focus:not(:focus-visible)
{
    outline: none;
}

h1, h2, h3, h4, h5, h6
{
    font-family: var(--ot-font-secondary), system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ot-text-1);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p
{
    line-height: 1.6;
    color: var(--ot-text-2);
}

@media screen and (max-width: 768px)
{
    html { font-size: 95%; }
    h1 { line-height: 1.2; }
    p { line-height: 1.5; }
}

@media screen and (max-width: 480px)
{
    html { font-size: 90%; }
    h1 { line-height: 1.1; }
    p { line-height: 1.4; }
}

small
{
    font-size: 0.875em;
}

a
{
    color: var(--ot-brand);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover
{
    color: var(--ot-brand-hover);
}

img,
picture,
video,
canvas,
svg
{
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
optgroup,
select,
textarea
{
    font: inherit;
    color: inherit;
    line-height: inherit;
}

button
{
    cursor: pointer;
}

ul, ol
{
    list-style-position: inside;
    padding-left: 1em;
}

table
{
    border-collapse: collapse;
    width: 100%;
}

i
{
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    color: var(--ot-text-2);
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 20;
}

::-webkit-scrollbar
{
    width: 0;
    height: 0;
    display: none;
}

*
{
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media print
{
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
    @page { margin: 2cm; }
}
:root
{
    --ot-spacing-x: 4px;
    --ot-spacing-s: 8px;
    --ot-spacing-m: 16px;
    --ot-spacing-l: 34px;

    --ot-radius-s: 4px;
    --ot-radius-m: 8px;
    --ot-radius-l: 12px;

    --ot-height-x: 18px;
    --ot-height-s: 28px;
    --ot-height-m: 34px;
    --ot-height-l: 44px;

    --ot-size-s: 11px;
    --ot-size-m: 13px;
    --ot-size-l: 22px;

    --ot-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ot-font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ot-bg-1: rgba(29, 29, 31, 1);
    --ot-bg-1-border: rgba(43, 43, 45, 1);
    --ot-bg-1-opacity: rgba(29, 29, 31, 0.85);
    --ot-bg-1-hover: rgba(33, 33, 35, 1);

    --ot-bg-2: rgba(34, 34, 36, 1);
    --ot-bg-2-border: rgba(48, 48, 50, 1);
    --ot-bg-2-opacity: rgba(34, 34, 36, 0.85);
    --ot-bg-2-hover: rgba(38, 38, 40, 1);

    --ot-bg-3: rgba(39, 39, 41, 1);
    --ot-bg-3-border: rgba(53, 53, 55, 1);
    --ot-bg-3-opacity: rgba(39, 39, 41, 0.85);
    --ot-bg-3-hover: rgba(43, 43, 45, 1);

    --ot-bg-4: rgba(44, 44, 46, 1);
    --ot-bg-4-border: rgba(58, 58, 60, 1);
    --ot-bg-4-opacity: rgba(44, 44, 46, 0.85);
    --ot-bg-4-hover: rgba(48, 48, 50, 1);

    --ot-text-1: rgba(225, 228, 232, 1);
    --ot-text-2: rgba(156, 156, 156, 1);

    --ot-brand: rgba(226, 112, 85, 1);
    --ot-brand-border: rgba(236, 142, 120, 1);
    --ot-brand-opacity: rgba(226, 112, 85, 0.12);
    --ot-brand-hover: rgba(206, 92, 65, 1);

    --ot-blue: rgba(56, 189, 248, 1);
    --ot-blue-border: rgba(125, 211, 252, 1);
    --ot-blue-opacity: rgba(56, 189, 248, 0.12);
    --ot-blue-hover: rgba(14, 165, 233, 1);

    --ot-red: rgba(244, 63, 94, 1);
    --ot-red-border: rgba(251, 113, 133, 1);
    --ot-red-opacity: rgba(244, 63, 94, 0.12);
    --ot-red-hover: rgba(225, 29, 72, 1);

    --ot-orange: rgba(251, 146, 60, 1);
    --ot-orange-border: rgba(253, 186, 116, 1);
    --ot-orange-opacity: rgba(251, 146, 60, 0.12);
    --ot-orange-hover: rgba(249, 115, 22, 1);

    --ot-green: rgba(52, 211, 153, 1);
    --ot-green-border: rgba(110, 231, 183, 1);
    --ot-green-opacity: rgba(52, 211, 153, 0.12);
    --ot-green-hover: rgba(16, 185, 129, 1);
}
/* Base page styles */
.ot-page
{
	display: grid;
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

/* Page area containers */
.ot-page-area
{
	position: relative;
	overflow: auto;
}
.e-2e3de5ec
{
	display: flex;
}

.e-2e3de5ec > .holder
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	width: 100%;
	padding: 10px var(--ot-spacing-m);
	border-radius: var(--ot-radius-m);
	font-size: var(--ot-size-s);
}

.e-2e3de5ec > .holder > .icon
{
	font-size: 16px;
	flex-shrink: 0;
}

.e-2e3de5ec > .holder > .text
{
	line-height: 1.4;
}

/* Colors */

.e-2e3de5ec > .holder[variant="red"]
{
	background: var(--ot-red-opacity);
	border: 1px solid rgba(244, 63, 94, 0.25);
	color: var(--ot-red);
}

.e-2e3de5ec > .holder[variant="green"]
{
	background: var(--ot-green-opacity);
	border: 1px solid rgba(52, 211, 153, 0.25);
	color: var(--ot-green);
}

.e-2e3de5ec > .holder[variant="blue"]
{
	background: var(--ot-blue-opacity);
	border: 1px solid rgba(56, 189, 248, 0.25);
	color: var(--ot-blue);
}

.e-2e3de5ec > .holder[variant="orange"]
{
	background: var(--ot-orange-opacity);
	border: 1px solid rgba(251, 146, 60, 0.25);
	color: var(--ot-orange);
}

.e-2e3de5ec > .holder[variant="brand"]
{
	background: var(--ot-brand-opacity);
	border: 1px solid rgba(99, 102, 241, 0.25);
	color: var(--ot-brand);
}

.e-2e3de5ec > .holder[variant="bg-1"]
{
	background: var(--ot-bg-1);
	border: 1px solid var(--ot-bg-1-border);
	color: var(--ot-text-2);
}

.e-2e3de5ec > .holder[variant="bg-2"]
{
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	color: var(--ot-text-2);
}

.e-2e3de5ec > .holder[variant="bg-3"]
{
	background: var(--ot-bg-3);
	border: 1px solid var(--ot-bg-3-border);
	color: var(--ot-text-2);
}

.e-2e3de5ec > .holder[variant="bg-4"]
{
	background: var(--ot-bg-4);
	border: 1px solid var(--ot-bg-4-border);
	color: var(--ot-text-2);
}
.e-49fb116e
{
	display: flex;
	width: 100%;
}

.e-49fb116e > .holder
{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	border-bottom: 1px solid var(--ot-bg-2-border);
	padding-bottom: var(--ot-spacing-m);
}

.e-49fb116e > .holder > .icon
{
	font-size: 36px;
	color: var(--ot-text-2);
}

.e-49fb116e > .holder > .title
{
	font-size: 18px;
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-49fb116e > .holder > .description
{
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
}

/* Alignment */

.e-49fb116e > .holder.center
{
	align-items: center;
	text-align: center;
}

.e-49fb116e > .holder.right
{
	align-items: flex-end;
	text-align: right;
}

/* Variants */

.e-49fb116e > .holder.clean
{
	border-bottom: none;
	padding-bottom: 0;
}

.e-49fb116e > .holder.page
{
	border-bottom: none;
	padding-bottom: 0;
}

.e-49fb116e > .holder.page > .title
{
	font-size: 36px;
	font-weight: 800;
}

/* Sizes */

.e-49fb116e > .holder.size-s > .title
{
	font-size: 16px;
}

.e-49fb116e > .holder.size-s > .description
{
	font-size: var(--ot-size-s);
}

.e-49fb116e > .holder.size-m > .title
{
	font-size: 25px;
	font-weight: 700;
}

.e-49fb116e > .holder.size-m > .description
{
	font-size: var(--ot-size-m);
	line-height: 1.6;
	max-width: 500px;
}

.e-49fb116e > .holder.size-l > .title
{
	font-size: 36px;
	font-weight: 800;
}

.e-49fb116e > .holder.size-l > .description
{
	font-size: var(--ot-size-l);
	line-height: 1.6;
	max-width: 600px;
}
.e-64e877b 
{
	display: flex;
}

/* Button Base */
.e-64e877b > .holder
{
	position: relative;
	border: 1px solid transparent;
	border-radius: var(--ot-radius-m);
	padding: 4px var(--ot-spacing-m);
	cursor: pointer;
	outline: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	background: transparent;
	color: var(--ot-text-1);
	font-size: var(--ot-size-m);
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	user-select: none;
	
	-webkit-tap-highlight-color: transparent;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.15s ease;
}

/* Content wrapper */
.e-64e877b > .holder > .content
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-spacing-s);
	transition: transform 0.2s ease;
}

/* Text */
.e-64e877b > .holder > .content > .text
{
	line-height: 1;
}

/* Icons */
.e-64e877b > .holder > .content > i
{
	font-size: 18px;
	transition: transform 0.2s ease;
}

.e-64e877b > .holder > .content > .icon-left
{
	margin-right: -2px;
}

.e-64e877b > .holder > .content > .icon-right
{
	margin-left: -2px;
}

/* Hover - subtle lift */
.e-64e877b > .holder:hover
{
	transform: translateY(-1px);
}

.e-64e877b > .holder:hover > .content > .icon-right
{
	transform: translateX(2px);
}

/* Active - press down */
.e-64e877b > .holder:active
{
	transform: translateY(0) scale(0.98);
	transition-duration: 0.1s;
}

/* Focus visible - premium glow ring */
.e-64e877b > .holder:focus-visible
{
	outline: none;
	box-shadow:
		0 0 0 2px var(--ot-bg-1),
		0 0 0 4px var(--ot-brand);
}

/* Disabled */
.e-64e877b > .holder[disabled="true"]
{
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
	transform: none;
}

/* Loading */
.e-64e877b > .holder[loading="true"]
{
	cursor: wait;
	pointer-events: none;
}

/* Spinner */
.e-64e877b > .holder > .spinner
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.e-64e877b > .holder > .spinner > i
{
	font-size: 18px;
	animation: e-button-spin 0.8s linear infinite;
}

@keyframes e-button-spin
{
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Ripple effect */
.e-64e877b > .holder > .ripple
{
	position: absolute;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.15;
	transform: scale(0);
	animation: e-button-ripple 0.6s ease-out forwards;
	pointer-events: none;
}

@keyframes e-button-ripple
{
	to
	{
		transform: scale(2.5);
		opacity: 0;
	}
}

/* Full width */
.e-64e877b > .holder[variant*="full"]
{
	width: 100%;
}

/* Rounded (pill) */
.e-64e877b > .holder[variant*="rounded"]
{
	border-radius: 100px;
}

/* Icon only - square aspect */
.e-64e877b > .holder[variant*="icon-only"]
{
	padding: 0;
	aspect-ratio: 1;
}

.e-64e877b > .holder[variant*="icon-only"] > .content > i
{
	margin: 0;
}
/* Small */
.e-64e877b > .holder[variant*="size-s"]
{
	height: var(--ot-height-s);
	padding: 0 var(--ot-spacing-s);
	font-size: var(--ot-size-s);
	gap: var(--ot-spacing-x);
}

.e-64e877b > .holder[variant*="size-s"] > .content
{
	gap: var(--ot-spacing-x);
}

.e-64e877b > .holder[variant*="size-s"] > .content > i,
.e-64e877b > .holder[variant*="size-s"] > .spinner > i
{
	font-size: 14px;
}

/* Medium (default) */
.e-64e877b > .holder[variant*="size-m"]
{
	height: var(--ot-height-m);
	padding: 0 var(--ot-spacing-m);
	font-size: var(--ot-size-m);
	gap: var(--ot-spacing-s);
}

.e-64e877b > .holder[variant*="size-m"] > .content
{
	gap: var(--ot-spacing-s);
}

.e-64e877b > .holder[variant*="size-m"] > .content > i,
.e-64e877b > .holder[variant*="size-m"] > .spinner > i
{
	font-size: 18px;
}

/* Large */
.e-64e877b > .holder[variant*="size-l"]
{
	height: var(--ot-height-l);
	padding: 0 var(--ot-spacing-l);
	font-size: var(--ot-size-l);
	gap: var(--ot-spacing-m);
}

.e-64e877b > .holder[variant*="size-l"] > .content
{
	gap: var(--ot-spacing-m);
}

.e-64e877b > .holder[variant*="size-l"] > .content > i,
.e-64e877b > .holder[variant*="size-l"] > .spinner > i
{
	font-size: 22px;
}

/* Icon-only size adjustments */
.e-64e877b > .holder[variant*="icon-only"][variant*="size-s"]
{
	width: var(--ot-height-s);
	padding: 0;
}

.e-64e877b > .holder[variant*="icon-only"][variant*="size-m"]
{
	width: var(--ot-height-m);
	padding: 0;
}

.e-64e877b > .holder[variant*="icon-only"][variant*="size-l"]
{
	width: var(--ot-height-l);
	padding: 0;
}
/* ============================================
   SOLID VARIANTS - Bold, confident, primary actions
   ============================================ */

/* Brand */
.e-64e877b > .holder[variant*="brand"]
{
	background: var(--ot-brand);
	border-color: var(--ot-brand);
	color: white;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.1),
		0 2px 8px var(--ot-brand-opacity);
}

.e-64e877b > .holder[variant*="brand"] > .content > i,
.e-64e877b > .holder[variant*="brand"] > .spinner > i
{
	color: white;
}

.e-64e877b > .holder[variant*="brand"]:hover
{
	background: var(--ot-brand-hover);
	border-color: var(--ot-brand-hover);
	box-shadow:
		0 4px 12px var(--ot-brand-opacity),
		0 2px 4px rgba(0, 0, 0, 0.1);
}

.e-64e877b > .holder[variant*="brand"]:focus-visible
{
	box-shadow:
		0 0 0 2px var(--ot-bg-1),
		0 0 0 4px var(--ot-brand);
}

/* Blue */
.e-64e877b > .holder[variant*="blue"]:not([variant*="soft-blue"]):not([variant*="outline-blue"])
{
	background: var(--ot-blue);
	border-color: var(--ot-blue);
	color: white;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.1),
		0 2px 8px var(--ot-blue-opacity);
}

.e-64e877b > .holder[variant*="blue"]:not([variant*="soft-blue"]):not([variant*="outline-blue"]) > .content > i,
.e-64e877b > .holder[variant*="blue"]:not([variant*="soft-blue"]):not([variant*="outline-blue"]) > .spinner > i
{
	color: white;
}

.e-64e877b > .holder[variant*="blue"]:not([variant*="soft-blue"]):not([variant*="outline-blue"]):hover
{
	background: var(--ot-blue-hover);
	border-color: var(--ot-blue-hover);
	box-shadow:
		0 4px 12px var(--ot-blue-opacity),
		0 2px 4px rgba(0, 0, 0, 0.1);
}

.e-64e877b > .holder[variant*="blue"]:focus-visible
{
	box-shadow:
		0 0 0 2px var(--ot-bg-1),
		0 0 0 4px var(--ot-blue);
}

/* Red */
.e-64e877b > .holder[variant*="red"]:not([variant*="soft-red"]):not([variant*="outline-red"])
{
	background: var(--ot-red);
	border-color: var(--ot-red);
	color: white;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.1),
		0 2px 8px var(--ot-red-opacity);
}

.e-64e877b > .holder[variant*="red"]:not([variant*="soft-red"]):not([variant*="outline-red"]) > .content > i,
.e-64e877b > .holder[variant*="red"]:not([variant*="soft-red"]):not([variant*="outline-red"]) > .spinner > i
{
	color: white;
}

.e-64e877b > .holder[variant*="red"]:not([variant*="soft-red"]):not([variant*="outline-red"]):hover
{
	background: var(--ot-red-hover);
	border-color: var(--ot-red-hover);
	box-shadow:
		0 4px 12px var(--ot-red-opacity),
		0 2px 4px rgba(0, 0, 0, 0.1);
}

.e-64e877b > .holder[variant*="red"]:focus-visible
{
	box-shadow:
		0 0 0 2px var(--ot-bg-1),
		0 0 0 4px var(--ot-red);
}

/* Orange */
.e-64e877b > .holder[variant*="orange"]:not([variant*="soft-orange"]):not([variant*="outline-orange"])
{
	background: var(--ot-orange);
	border-color: var(--ot-orange);
	color: white;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.1),
		0 2px 8px var(--ot-orange-opacity);
}

.e-64e877b > .holder[variant*="orange"]:not([variant*="soft-orange"]):not([variant*="outline-orange"]) > .content > i,
.e-64e877b > .holder[variant*="orange"]:not([variant*="soft-orange"]):not([variant*="outline-orange"]) > .spinner > i
{
	color: white;
}

.e-64e877b > .holder[variant*="orange"]:not([variant*="soft-orange"]):not([variant*="outline-orange"]):hover
{
	background: var(--ot-orange-hover);
	border-color: var(--ot-orange-hover);
	box-shadow:
		0 4px 12px var(--ot-orange-opacity),
		0 2px 4px rgba(0, 0, 0, 0.1);
}

.e-64e877b > .holder[variant*="orange"]:focus-visible
{
	box-shadow:
		0 0 0 2px var(--ot-bg-1),
		0 0 0 4px var(--ot-orange);
}

/* Green */
.e-64e877b > .holder[variant*="green"]:not([variant*="soft-green"]):not([variant*="outline-green"])
{
	background: var(--ot-green);
	border-color: var(--ot-green);
	color: white;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.1),
		0 2px 8px var(--ot-green-opacity);
}

.e-64e877b > .holder[variant*="green"]:not([variant*="soft-green"]):not([variant*="outline-green"]) > .content > i,
.e-64e877b > .holder[variant*="green"]:not([variant*="soft-green"]):not([variant*="outline-green"]) > .spinner > i
{
	color: white;
}

.e-64e877b > .holder[variant*="green"]:not([variant*="soft-green"]):not([variant*="outline-green"]):hover
{
	background: var(--ot-green-hover);
	border-color: var(--ot-green-hover);
	box-shadow:
		0 4px 12px var(--ot-green-opacity),
		0 2px 4px rgba(0, 0, 0, 0.1);
}

.e-64e877b > .holder[variant*="green"]:focus-visible
{
	box-shadow:
		0 0 0 2px var(--ot-bg-1),
		0 0 0 4px var(--ot-green);
}


/* ============================================
   SOFT VARIANTS - Subtle, secondary actions
   ============================================ */

.e-64e877b > .holder[variant*="soft-brand"]
{
	background: var(--ot-brand-opacity);
	border-color: transparent;
	color: var(--ot-brand);
}

.e-64e877b > .holder[variant*="soft-brand"]:hover
{
	background: var(--ot-brand);
	color: white;
}

.e-64e877b > .holder[variant*="soft-blue"]
{
	background: var(--ot-blue-opacity);
	border-color: transparent;
	color: var(--ot-blue);
}

.e-64e877b > .holder[variant*="soft-blue"]:hover
{
	background: var(--ot-blue);
	color: white;
}

.e-64e877b > .holder[variant*="soft-red"]
{
	background: var(--ot-red-opacity);
	border-color: transparent;
	color: var(--ot-red);
}

.e-64e877b > .holder[variant*="soft-red"]:hover
{
	background: var(--ot-red);
	color: white;
}

.e-64e877b > .holder[variant*="soft-orange"]
{
	background: var(--ot-orange-opacity);
	border-color: transparent;
	color: var(--ot-orange);
}

.e-64e877b > .holder[variant*="soft-orange"]:hover
{
	background: var(--ot-orange);
	color: white;
}

.e-64e877b > .holder[variant*="soft-green"]
{
	background: var(--ot-green-opacity);
	border-color: transparent;
	color: var(--ot-green);
}

.e-64e877b > .holder[variant*="soft-green"]:hover
{
	background: var(--ot-green);
	color: white;
}


/* ============================================
   OUTLINE VARIANTS - Bordered, tertiary actions
   ============================================ */

.e-64e877b > .holder[variant*="outline-brand"]
{
	background: transparent;
	border-color: var(--ot-brand);
	color: var(--ot-brand);
}

.e-64e877b > .holder[variant*="outline-brand"]:hover
{
	background: var(--ot-brand-opacity);
}

.e-64e877b > .holder[variant*="outline-blue"]
{
	background: transparent;
	border-color: var(--ot-blue);
	color: var(--ot-blue);
}

.e-64e877b > .holder[variant*="outline-blue"]:hover
{
	background: var(--ot-blue-opacity);
}

.e-64e877b > .holder[variant*="outline-red"]
{
	background: transparent;
	border-color: var(--ot-red);
	color: var(--ot-red);
}

.e-64e877b > .holder[variant*="outline-red"]:hover
{
	background: var(--ot-red-opacity);
}

.e-64e877b > .holder[variant*="outline-orange"]
{
	background: transparent;
	border-color: var(--ot-orange);
	color: var(--ot-orange);
}

.e-64e877b > .holder[variant*="outline-orange"]:hover
{
	background: var(--ot-orange-opacity);
}

.e-64e877b > .holder[variant*="outline-green"]
{
	background: transparent;
	border-color: var(--ot-green);
	color: var(--ot-green);
}

.e-64e877b > .holder[variant*="outline-green"]:hover
{
	background: var(--ot-green-opacity);
}


/* ============================================
   BACKGROUND VARIANTS - Neutral surface buttons
   ============================================ */

.e-64e877b > .holder[variant*="bg-1"]
{
	background: var(--ot-bg-1);
	border-color: var(--ot-bg-1-border);
	color: var(--ot-text-1);
}

.e-64e877b > .holder[variant*="bg-1"]:hover
{
	background: var(--ot-bg-1-hover);
	border-color: var(--ot-bg-2-border);
}

.e-64e877b > .holder[variant*="bg-2"]
{
	background: var(--ot-bg-2);
	border-color: var(--ot-bg-2-border);
	color: var(--ot-text-1);
}

.e-64e877b > .holder[variant*="bg-2"]:hover
{
	background: var(--ot-bg-2-hover);
	border-color: var(--ot-bg-3-border);
}

.e-64e877b > .holder[variant*="bg-3"]
{
	background: var(--ot-bg-3);
	border-color: var(--ot-bg-3-border);
	color: var(--ot-text-1);
}

.e-64e877b > .holder[variant*="bg-3"]:hover
{
	background: var(--ot-bg-3-hover);
	border-color: var(--ot-bg-4-border);
}

.e-64e877b > .holder[variant*="bg-4"]
{
	background: var(--ot-bg-4);
	border-color: var(--ot-bg-4-border);
	color: var(--ot-text-1);
}

.e-64e877b > .holder[variant*="bg-4"]:hover
{
	background: var(--ot-bg-4-hover);
}


/* ============================================
   SPECIAL VARIANTS
   ============================================ */

/* Ghost - minimal, text-like */
.e-64e877b > .holder[variant*="ghost"]
{
	background: transparent;
	border-color: transparent;
	color: var(--ot-text-2);
}

.e-64e877b > .holder[variant*="ghost"]:hover
{
	background: var(--ot-bg-2);
	color: var(--ot-text-1);
}

/* Border - neutral outlined */
.e-64e877b > .holder[variant*="border"]
{
	background: transparent;
	border-color: var(--ot-bg-1-border);
	color: var(--ot-text-1);
}

.e-64e877b > .holder[variant*="border"]:hover
{
	background: var(--ot-bg-2);
	border-color: var(--ot-bg-3-border);
}

/* Transparent - no background, subtle hover */
.e-64e877b > .holder[variant*="transparent"]
{
	background: transparent;
	border-color: transparent;
	color: var(--ot-text-1);
}

.e-64e877b > .holder[variant*="transparent"]:hover
{
	background: var(--ot-bg-2-opacity);
}

/* Glass - frosted glass effect */
.e-64e877b > .holder[variant*="glass"]
{
	background: var(--ot-bg-1-opacity);
	border-color: var(--ot-bg-2-border);
	color: var(--ot-text-1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.e-64e877b > .holder[variant*="glass"]:hover
{
	background: var(--ot-bg-2-opacity);
	border-color: var(--ot-bg-3-border);
}
.e-64d8716d
{
	display: flex;
}

.e-64d8716d > .holder
{
	display: flex;
	align-items: center;
	width: 100%;
	height: 48px;
	padding: 0 var(--ot-spacing-m);
	background: var(--ot-bg-1);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

/* Logo */

.e-64d8716d > .holder > .logo
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	text-decoration: none;
	color: var(--ot-text-1);
	flex-shrink: 0;
}

.e-64d8716d > .holder > .logo > .logo-icon
{
	height: 16px;
}


/* Tabs */

.e-64d8716d > .holder > .tabs
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-x);
	margin-left: var(--ot-spacing-l);
	height: 100%;
}

.e-64d8716d > .holder .tab
{
	display: flex;
	align-items: center;
	height: 100%;
	gap: 6px;
	padding: 0 var(--ot-spacing-s);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, background 0.2s ease;
	font-weight: 500;
	color: var(--ot-text-2);
}

.e-64d8716d > .holder .tab > i
{
	font-size: 16px;
}

.e-64d8716d > .holder .tab:hover
{
	color: var(--ot-text-1);
	background: var(--ot-bg-2);
}

/* Right */

.e-64d8716d > .holder > .right
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
	margin-left: auto;
	height: 100%;
}
.e-210c16c7
{
	display: flex;
	width: 220px;
	flex-shrink: 0;
	height: calc(100vh - 48px);
}

.e-210c16c7 > .holder
{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--ot-spacing-m) 0;
	gap: var(--ot-spacing-m);
}

/* Group */

.e-210c16c7 > .holder > .group
{
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* Title */

.e-210c16c7 > .holder > .group > .title
{
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-text-2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0 var(--ot-spacing-m);
	margin-bottom: var(--ot-spacing-x);
	opacity: 0.6;
}

/* Item */

.e-210c16c7 > .holder > .group > .item
{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 var(--ot-spacing-m);
	height: var(--ot-height-s);
	text-decoration: none;
	color: var(--ot-text-2);
	font-size: var(--ot-size-m);
	font-weight: 500;
	border-radius: var(--ot-radius-s);
	margin: 0 var(--ot-spacing-s);
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}

.e-210c16c7 > .holder > .group > .item > i
{
	font-size: 18px;
	opacity: 0.6;
}

.e-210c16c7 > .holder > .group > .item > .count
{
	margin-left: auto;
	font-size: 11px;
	color: var(--ot-text-2);
	opacity: 0.5;
}

.e-210c16c7 > .holder > .group > .item:hover
{
	color: var(--ot-text-1);
	background: var(--ot-bg-2);
}

.e-210c16c7 > .holder > .group > .item.active
{
	color: var(--ot-text-1);
	background: var(--ot-bg-3);
}

.e-210c16c7 > .holder > .group > .item.active > i
{
	opacity: 1;
}

/* Variants */

.e-210c16c7 > .holder.bg-2
{
	background: var(--ot-bg-2);
}

.e-210c16c7 > .holder.border
{
	border-right: 1px solid var(--ot-bg-2-border);
}
.e-21efbac3
{
	display: flex;
	width: 100%;
}

.e-21efbac3 > .holder
{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--ot-spacing-l) var(--ot-spacing-m);
	gap: var(--ot-spacing-l);
}

.e-21efbac3 > .holder.highlighted
{
	border-top: 2px solid var(--ot-brand);
}

/* Header */

.e-21efbac3 > .holder > .header
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
}

.e-21efbac3 > .holder > .header > .badge
{
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 100px;
	background: color-mix(in srgb, var(--ot-brand) 12%, transparent);
	font-size: 11px;
	font-weight: 600;
	color: var(--ot-brand);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.e-21efbac3 > .holder > .header > .name
{
	font-size: 20px;
	font-weight: 700;
	color: var(--ot-text-1);
	margin: 0;
}

.e-21efbac3 > .holder > .header > .description
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-2);
	line-height: 1.5;
	margin: 0;
}

.e-21efbac3 > .holder > .header > .price
{
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-top: var(--ot-spacing-x);
}

.e-21efbac3 > .holder > .header > .price > .currency
{
	font-size: 20px;
	font-weight: 700;
	color: var(--ot-text-1);
}

.e-21efbac3 > .holder > .header > .price > .amount
{
	font-size: 40px;
	font-weight: 800;
	color: var(--ot-text-1);
	line-height: 1;
}

.e-21efbac3 > .holder > .header > .price > .period
{
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	margin-left: 4px;
}

.e-21efbac3 > .holder > .header > .yearly
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-2);
}

/* Features */

.e-21efbac3 > .holder > .features
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-s);
	flex: 1;
	padding-top: var(--ot-spacing-l);
	border-top: 1px solid var(--ot-bg-2-border);
}

.e-21efbac3 > .holder > .features > .feature
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-21efbac3 > .holder > .features > .feature > .icon
{
	font-size: 18px;
	flex-shrink: 0;
	color: var(--ot-green);
}

.e-21efbac3 > .holder > .features > .feature > .text
{
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
}

/* Disabled */

.e-21efbac3 > .holder > .features > .feature.disabled > .icon
{
	color: var(--ot-text-2);
	opacity: 0.4;
}

.e-21efbac3 > .holder > .features > .feature.disabled > .text
{
	color: var(--ot-text-2);
	opacity: 0.4;
}

/* Action */

.e-21efbac3 > .holder > .action
{
	display: flex;
	margin-top: auto;
}
.e-4696d703
{
	display: flex;
	width: 100%;
}

.e-4696d703 > .holder
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-m);
	width: 100%;
}

/* Line wrapper */

.e-4696d703 > .holder > .line:empty
{
	height: var(--ot-spacing-m);
}

/* Headings */

.e-4696d703 > .holder h1
{
	font-size: 32px;
	font-weight: 800;
	color: var(--ot-text-1);
	line-height: 1.2;
	letter-spacing: -0.5px;
	margin: 0;
}

.e-4696d703 > .holder h2
{
	font-size: 24px;
	font-weight: 700;
	color: var(--ot-text-1);
	line-height: 1.3;
	letter-spacing: -0.3px;
	margin: 0;
}

.e-4696d703 > .holder h3
{
	font-size: 18px;
	font-weight: 600;
	color: var(--ot-text-1);
	line-height: 1.4;
	margin: 0;
}

.e-4696d703 > .holder h4
{
	font-size: 15px;
	font-weight: 600;
	color: var(--ot-text-1);
	line-height: 1.4;
	margin: 0;
}

/* Paragraph */

.e-4696d703 > .holder p
{
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	line-height: 1.8;
	margin: 0;
}

/* Links */

.e-4696d703 > .holder a
{
	color: var(--ot-brand);
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.15s ease;
}

.e-4696d703 > .holder a:hover
{
	opacity: 0.8;
}

/* Bold & Italic */

.e-4696d703 > .holder strong
{
	font-weight: 600;
	color: var(--ot-text-1);
}

.e-4696d703 > .holder em
{
	font-style: italic;
}

.e-4696d703 > .holder del
{
	text-decoration: line-through;
	opacity: 0.6;
}

/* Lists */

.e-4696d703 > .holder ul,
.e-4696d703 > .holder ol
{
	display: flex;
	flex-direction: column;
	gap: var(--ot-spacing-x);
	padding-left: 24px;
	margin: 0;
}

.e-4696d703 > .holder li
{
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	line-height: 1.7;
}

.e-4696d703 > .holder ul > li
{
	list-style-type: disc;
}

.e-4696d703 > .holder ol > li
{
	list-style-type: decimal;
}

.e-4696d703 > .holder li::marker
{
	color: var(--ot-brand);
}

/* Blockquote */

.e-4696d703 > .holder blockquote
{
	border-left: 3px solid var(--ot-brand);
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--ot-bg-2);
	border-radius: 0 8px 8px 0;
	margin: 0;
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	line-height: 1.7;
	font-style: italic;
}

/* Inline code */

.e-4696d703 > .holder code.inline
{
	padding: 2px 7px;
	border-radius: 4px;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
	font-size: 0.88em;
	color: var(--ot-brand);
}

/* Code block */

.e-4696d703 > .holder .codeblock
{
	position: relative;
	background: var(--ot-bg-2);
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 8px;
	padding: var(--ot-spacing-m);
	overflow-x: auto;
	margin: 0;
}

.e-4696d703 > .holder .codeblock > code
{
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
	font-size: 13px;
	line-height: 1.7;
	color: var(--ot-text-1);
	tab-size: 4;
}

/* Table */

.e-4696d703 > .holder table
{
	width: 100%;
	border-collapse: collapse;
	border-radius: 8px;
	background-color: var(--ot-bg-2);
	overflow: hidden;
}

.e-4696d703 > .holder table th
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	background: var(--ot-bg-2);
	font-size: var(--ot-size-s);
	font-weight: 600;
	color: var(--ot-text-1);
	text-align: left;
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-4696d703 > .holder table td
{
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	font-size: var(--ot-size-m);
	color: var(--ot-text-2);
	line-height: 1.6;
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-4696d703 > .holder table tr:last-child td
{
	border-bottom: none;
}

.e-4696d703 > .holder table tr:hover td
{
	background: var(--ot-bg-2-hover);
}

/* Horizontal rule */

.e-4696d703 > .holder hr
{
	border: none;
	border-top: 1px solid var(--ot-bg-2-border);
	margin: 0;
}

/* Images */

.e-4696d703 > .holder img
{
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid var(--ot-bg-2-border);
}
.e-4a15b201
{
	display: flex;
	width: 100%;
}

.e-4a15b201 > .holder
{
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid var(--ot-bg-2-border);
	border-radius: 8px;
	overflow: hidden;
}

.e-4a15b201 > .holder > .label
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--ot-spacing-s) var(--ot-spacing-m);
	font-size: var(--ot-size-s);
	font-weight: 600;
	font-family: monospace;
	color: var(--ot-text-2);
	background: var(--ot-bg-3);
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-4a15b201 > .holder > .label > .copy
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: none;
	border: none;
	color: var(--ot-text-2);
	cursor: pointer;
	transition: color 0.2s ease;
}

.e-4a15b201 > .holder > .label > .copy:hover
{
	color: var(--ot-text-1);
}

.e-4a15b201 > .holder > .label > .copy > i
{
	font-size: 16px;
}

.e-4a15b201 > .holder > .content
{
	padding: var(--ot-spacing-m);
	margin: 0;
	font-size: 12px;
	font-family: monospace;
	color: var(--ot-text-2);
	line-height: 1.6;
	background: var(--ot-bg-2);
	overflow-x: auto;
	white-space: pre;
	tab-size: 4;
}
.e-29179902
{
	display: flex;
	width: 100%;
}

.e-29179902 > .holder
{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.e-29179902 > .holder > .param
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ot-spacing-m);
	padding: var(--ot-spacing-s) 0;
	border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-29179902 > .holder > .param:last-child
{
	border-bottom: none;
}

.e-29179902 > .holder > .param > .left
{
	display: flex;
	align-items: center;
	gap: var(--ot-spacing-s);
}

.e-29179902 > .holder > .param > .left > .name
{
	font-size: var(--ot-size-m);
	font-weight: 600;
	font-family: monospace;
	color: var(--ot-text-1);
}

.e-29179902 > .holder > .param > .left > .type
{
	font-size: 10px;
	font-weight: 500;
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--ot-blue-opacity);
	color: var(--ot-blue);
}

.e-29179902 > .holder > .param > .left > .required
{
	font-size: 10px;
	font-weight: 500;
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--ot-orange-opacity);
	color: var(--ot-orange);
}

.e-29179902 > .holder > .param > .desc
{
	font-size: var(--ot-size-s);
	color: var(--ot-text-2);
	text-align: right;
}
.e-146cf640
{
    display: flex;
}

.e-146cf640 > .holder
{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: var(--ot-radius-l);
    background: var(--ot-bg-2);
    border: 1px solid var(--ot-bg-2-border);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.e-146cf640 > .holder:hover
{
    border-color: var(--ot-bg-3-border);
    transform: translateY(-2px);
}

/* Icon */

.e-146cf640 > .holder > .icon-wrap
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: var(--ot-bg-1);
    border-bottom: 1px solid var(--ot-bg-2-border);
}

.e-146cf640 > .holder > .icon-wrap > i
{
    font-size: 40px;
    color: var(--ot-brand);
    opacity: 0.8;
}

.e-146cf640 > .holder:hover > .icon-wrap > i
{
    opacity: 1;
}

/* Body */

.e-146cf640 > .holder > .body
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px 16px;
}

/* Head */

.e-146cf640 > .holder > .body > .head
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ot-spacing-s);
}

.e-146cf640 > .holder > .body > .head > .title
{
    font-size: 14px;
    font-weight: 600;
    color: var(--ot-text-1);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge */

.e-146cf640 > .holder > .body > .head > .badge
{
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.e-146cf640 > .holder > .body > .head > .badge.free
{
    color: var(--ot-green);
    background: var(--ot-green-opacity);
}

.e-146cf640 > .holder > .body > .head > .badge.pro
{
    color: var(--ot-brand);
    background: var(--ot-brand-opacity);
}

.e-146cf640 > .holder > .body > .head > .badge.agency
{
    color: var(--ot-blue);
    background: var(--ot-blue-opacity);
}

/* Description */

.e-146cf640 > .holder > .body > .description
{
    font-size: 12px;
    color: var(--ot-text-2);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */

.e-146cf640 > .holder > .body > .meta
{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.e-146cf640 > .holder > .body > .meta > .category
{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: var(--ot-text-2);
    padding: 2px 8px;
    background: var(--ot-bg-3);
    border-radius: 100px;
}

.e-146cf640 > .holder > .body > .meta > .installs
{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: var(--ot-text-2);
    padding: 2px 8px;
    background: var(--ot-bg-3);
    border-radius: 100px;
}

.e-146cf640 > .holder > .body > .meta > .installs > i
{
    font-size: 11px;
}

.e-146cf640 > .holder > .body > .meta > .versions
{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    color: var(--ot-text-2);
    padding: 2px 8px;
    background: var(--ot-bg-3);
    border-radius: 100px;
}

.e-146cf640 > .holder > .body > .meta > .versions > i
{
    font-size: 11px;
}
.e-5bb0853d
{
    display: flex;
    width: 100%;
}

.e-5bb0853d > .holder
{
    display: flex;
    align-items: flex-start;
    gap: var(--ot-spacing-m);
    width: 100%;
    padding: var(--ot-spacing-l) var(--ot-spacing-l);
    border-bottom: 1px solid var(--ot-bg-2-border);
}

/* Icon */

.e-5bb0853d > .holder > .icon-wrap
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--ot-radius-l);
    background: var(--ot-bg-2);
    border: 1px solid var(--ot-bg-2-border);
    flex-shrink: 0;
}

.e-5bb0853d > .holder > .icon-wrap > i
{
    font-size: 28px;
    color: var(--ot-brand);
}

/* Info */

.e-5bb0853d > .holder > .info
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.e-5bb0853d > .holder > .info > .top
{
    display: flex;
    align-items: center;
    gap: var(--ot-spacing-s);
}

.e-5bb0853d > .holder > .info > .top > .title
{
    font-size: 22px;
    font-weight: 700;
    color: var(--ot-text-1);
    margin: 0;
}

.e-5bb0853d > .holder > .info > .top > .badge
{
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.e-5bb0853d > .holder > .info > .top > .badge.free
{
    color: var(--ot-green);
    background: var(--ot-green-opacity);
}

.e-5bb0853d > .holder > .info > .top > .badge.pro
{
    color: var(--ot-brand);
    background: var(--ot-brand-opacity);
}

.e-5bb0853d > .holder > .info > .top > .badge.agency
{
    color: var(--ot-blue);
    background: var(--ot-blue-opacity);
}

.e-5bb0853d > .holder > .info > .description
{
    font-size: var(--ot-size-m);
    color: var(--ot-text-2);
    line-height: 1.5;
    margin: 0;
}

/* Meta */

.e-5bb0853d > .holder > .info > .meta
{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.e-5bb0853d > .holder > .info > .meta > .tag
{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--ot-text-2);
    padding: 3px 10px;
    background: var(--ot-bg-2);
    border-radius: 100px;
}

.e-5bb0853d > .holder > .info > .meta > .tag > i
{
    font-size: 13px;
}

/* Action */

.e-5bb0853d > .holder > .action
{
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
}
.e-27fe68e8
{
    display: flex;
    width: 100%;
}

.e-27fe68e8 > .holder
{
    display: flex;
    width: 100%;
    min-height: 400px;
    border-radius: 0;
    background: var(--ot-bg-2);
    overflow: hidden;
}

.e-27fe68e8 > .holder > .frame
{
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    background: var(--ot-bg-1);
    border-radius: 0;
    zoom: 0.7;
}

.e-27fe68e8 > .holder > .empty
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--ot-spacing-s);
    width: 100%;
    color: var(--ot-text-2);
}

.e-27fe68e8 > .holder > .empty > i
{
    font-size: 36px;
    opacity: 0.3;
}

.e-27fe68e8 > .holder > .empty > span
{
    font-size: var(--ot-size-m);
}
.p-5daf64a2
{
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 48px);
}

.p-5daf64a2 > .body
{
    display: flex;
    flex: 1;
}

.p-5daf64a2 > .body > .e-210c16c7
{
    position: sticky;
    top: 8px;
    height: calc(100vh - 48px);
}

.p-5daf64a2 > .body > .content
{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-5daf64a2 > .body > .content > .preview
{
    border-bottom: 1px solid var(--ot-bg-2-border);
}

.p-5daf64a2 > .body > .content > .sections
{
    display: flex;
    flex-direction: column;
    gap: var(--ot-spacing-l);
    padding-top: var(--ot-spacing-l);
    padding-bottom: var(--ot-spacing-l);
}

.p-5daf64a2 > .body > .content > .sections > .section
{
    display: flex;
    flex-direction: column;
    gap: var(--ot-spacing-m);
}

.p-5daf64a2 > .body > .content > .sections > .section > .panel
{
    background: var(--ot-bg-2);
    border: 1px solid var(--ot-bg-2-border);
    border-radius: var(--ot-radius-l);
    padding: var(--ot-spacing-m);
}