@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
		--color-bg: #ffffff;
		--color-surface: #ffffff;
		--color-surface-soft: #F5F5F5;
		--color-border: #dde3ee;
		--color-border-soft: #e5e8f0;
		--color-primary: #000000;
		--color-primary-soft: #e3f1f9;
		--color-accent: #ffd600;
		--color-accent-red: #ff6464;
		--color-register: #ff6464;
		--color-register-inverse: #ffffff;
		--color-text: #222222;
		--color-text-muted: #6b7280;
		--color-dark-blue: #092d40;
		--color-tip-bg: #f0f2ff;
		--color-tip: #002e6a;
		--radius-lg: 16px;
		--radius-xl: 20px;
		--radius-pill: 8px;
		--shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.06);
		--shell-max-width: 1080px;
		--transition-fast: 150ms ease-out;
		--transition-med: 220ms ease-out;
		--font-size-base: 14px;
		--font-size-h1: 30px;
		--font-size-h2: 20px;
		--font-size-small: 10px;
}

body.partials-loading {
    visibility: hidden;
}

body.nav-open {
    overflow: hidden;
}

*,
*::before,
*::after {
		box-sizing: border-box;
}

html,
body {
		margin: 0;
		padding: 0;
		font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
		color: var(--color-text-muted);
		background-color: var(--color-bg);
		font-size: var(--font-size-base);
		line-height: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
		font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
		color: var(--color-text);
}

img {
		max-width: 100%;
		display: block;
}

a {
		color: var(--color-text-muted);
		text-decoration: none;
}

		a:hover {
				text-decoration: underline;
		}

li {
		padding: 2px 0px;
}

.shell {
		max-width: var(--shell-max-width);
		margin: 0 auto;
		padding: 0 16px;
}

.shell--header {
		max-width: none;
		width: 100%;
		padding: 0 16px;
}

/* Header */

.site-header {
		position: sticky;
		top: 0;
		z-index: 20;
		background-color: var(--color-surface-soft);
		border-bottom: 1px solid var(--color-border);
}

.shell--header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 64px;
}

.brand {
		display: flex;
		align-items: center;
		gap: 10px;
		color: inherit;
}

.brand__logo-img {
		max-height: 30px;
		width: auto;
		object-fit: contain;
		display: block;
}

.brand__logo-circle {
		width: 32px;
		height: 32px;
		border-radius: 999px;
		background: radial-gradient(circle at 15% 0, var(--color-accent), #ffb300 45%, var(--color-primary));
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		color: #0f172a;
}

.brand__text {
		display: flex;
		flex-direction: column;
		line-height: 1.1;
}

.brand__name {
		font-weight: 600;
}

.brand__tagline {
		color: var(--color-text-muted);
}

/* Nav */

.site-nav {
		display: flex;
		align-items: center;
		font-size: var(--font-size-small);
}

.btn-register {
		padding: 9px 20px;
		border-radius: var(--radius-pill);
		background-color: var(--color-register);
		color: #ffffff;
		font-weight: 600;
		text-decoration: none;
		border: 2px solid transparent;
		transition: background-color var(--transition-fast), color var(--transition-fast), border var(--transition-fast);
		font-size: 12px !important;
}

		.btn-register:hover,
		.btn-register:focus-visible {
				background-color: var(--color-register-inverse);
				color: var(--color-register);
				border-color: var(--color-register);
		}

/* Mobile nav toggle */

.nav-toggle {
		display: none;
		background: transparent;
		border: none;
		width: 32px;
		height: 32px;
		padding: 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		cursor: pointer;
}

.nav-toggle__bar {
		width: 20px;
		height: 2px;
		background: #111827;
		border-radius: 999px;
}

/* Page layout */

.page {
		padding-top: 56px;
		padding-bottom: 56px;
}

/* Hero */
.hero__shell {
		padding-top: 100px;
		padding-bottom: 100px;
}

.hero__content {
		margin: 0 auto;
		max-width: 1200px;
		text-align: center;
}

.hero__title {
		margin: 0 0 8px;
		font-weight: 650;
		letter-spacing: -0.02em;
}

.hero__subtitle {
		margin: 0 0 24px;
		color: var(--color-text-muted);
}

/* Search */

.hero-search {
		padding: 16px 16px 14px;
		max-width: 1200px;
		margin: 0 auto;
		position: relative;
}

.hero-search__label {
		display: block;
		margin-bottom: 6px;
		text-transform: uppercase;
		letter-spacing: 0.09em;
		color: var(--color-text-muted);
}

.hero-search__control {
		display: flex;
		align-items: center;
		gap: 8px;
}

		.hero-search__control input[type="search"] {
				flex: 1;
				width: 100%;
				padding: 12px 16px;
				border-radius: var(--radius-pill);
				border: solid 1px var(--color-border);
				background-color: transparent;
				box-shadow: none;
		}

		.hero-search__control input::placeholder {
				color: #9ca3af;
		}

		.hero-search__control button {
				border-radius: var(--radius-pill);
				border: none;
				padding: 10px 18px;
				font-weight: 600;
				cursor: pointer;
				background-color: var(--color-primary);
				color: #ffffff;
				transition: background-color var(--transition-fast), transform var(--transition-fast);
				white-space: nowrap;
		}

				.hero-search__control button:hover {
						background-color: #0b3c57;
						transform: translateY(-1px);
				}

.search-results {
		position: absolute;
		top: 72px;
		left: 16px;
		right: 16px;
		margin: 0 auto;
		width: min(960px, calc(100% - 32px));
		text-align: left;
		z-index: 20;
}

.search-results[data-search-active="true"] {
		border: 1px solid var(--color-border-soft);
		border-radius: var(--radius-lg);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--shadow-soft);
		overflow: hidden;
}

.search-results__list {
		display: grid;
}

.search-result {
		display: grid;
		gap: 4px;
		padding: 16px 18px;
		text-decoration: none;
		border-bottom: 1px solid var(--color-border-soft);
}

.search-result:last-child {
		border-bottom: 0;
}

.search-result:hover,
.search-result:focus-visible {
		background: #f8fafc;
		text-decoration: none;
}

.search-result__title {
		color: var(--color-text);
		font-weight: 700;
}

.search-result__summary {
		color: var(--color-text-muted);
		font-size: 14px;
		line-height: 1.45;
}

.search-results__empty {
		margin: 0;
		padding: 14px 16px;
		color: var(--color-text-muted);
}

body.search-modal-open {
		overflow: hidden;
}

.search-modal {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 300;
}

.search-modal--open {
		display: block;
}

.search-modal__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(9, 45, 64, 0.42);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
}

.search-modal__panel {
		position: relative;
		width: min(760px, calc(100% - 32px));
		max-height: min(680px, calc(100vh - 48px));
		margin: 24px auto;
		padding: 24px;
		border-radius: var(--radius-lg);
		background: #ffffff;
		box-shadow: 0 24px 70px rgba(9, 45, 64, 0.25);
		overflow-y: auto;
}

.search-modal__panel h2 {
		margin: 0 40px 18px 0;
		font-size: 24px;
}

.search-modal__close {
		position: absolute;
		top: 18px;
		right: 18px;
		width: 32px;
		height: 32px;
		border: 0;
		border-radius: var(--radius-pill);
		background: #f1f5f9;
		color: var(--color-text);
		cursor: pointer;
		font-size: 22px;
		line-height: 1;
}

.search-modal__body {
		display: grid;
		gap: 10px;
}

.search-result--modal {
		border: 1px solid var(--color-border-soft);
		border-radius: var(--radius-md);
}

.hero-highlights {
		margin-top: 200px;
		display: flex;
		justify-content: center;
		gap: 16px;
		flex-wrap: wrap;
}

.hero-highlight-card {
		width: min(320px, 100%);
		border-radius: var(--radius-lg);
		background-color: #ffffff;
		box-shadow: var(--shadow-soft);
		overflow: hidden;
		border: 1px solid var(--color-border-soft);
		display: flex;
		flex-direction: column;
		text-decoration: none;
}

		.hero-highlight-card:hover {
				text-decoration: none;
		}

		.hero-highlight-card img {
				width: 100%;
				object-fit: cover;
				display: block;
				transition: transform 0.6s ease;
				transform-origin: center center;
				border-radius: var(--radius-lg) var(--radius-lg) 0 0;
		}

		.hero-highlight-card:hover img {
				transform: scale(0.95);
		}

.hero-highlight-card__body {
		padding: 16px;
}

		.hero-highlight-card__body h3 {
				margin: 0 0 6px;
		}

		.hero-highlight-card__body p {
				margin: 0;
				color: var(--color-text-muted);
		}

/* Order flow stepper */

.order-flow {
    display: flex;
    align-items: flex-start;
    margin: 40px 0 8px;
    position: relative;
}

.order-flow__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.order-flow__step::after {
    content: '';
    position: absolute;
    top: 19px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--color-border-soft);
    z-index: 0;
}

.order-flow__step:last-child::after {
    display: none;
}

.order-flow__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent, #e85d5d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.order-flow__title {
    font-weight: 600;
    font-size: 13px;
    margin: 0 0 4px;
    line-height: 1.3;
}

.order-flow__desc {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.4;
    padding: 0 4px;
}

@media (max-width: 600px) {
    .order-flow {
        flex-direction: column;
        gap: 0;
    }

    .order-flow__step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 24px;
    }

    .order-flow__step::after {
        top: 40px;
        left: 19px;
        width: 2px;
        height: 100%;
    }

    .order-flow__step:last-child::after {
        display: none;
    }

    .order-flow__number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* Sections */

.section {
		padding: 32px 0;
}

.section__header {
		margin-bottom: 16px;
		text-align: left;
}

		.section__header h2 {
				margin: 0 0 4px;
		}

		.section__header p {
				margin: 0;
				color: var(--color-text-muted);
		}

/* Topic grid */

.section--topics {
		background-color: transparent;
}

.topic-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
}

.topic-card {
		background-color: #ffffff;
		padding: 16px;
		display: flex;
		flex-direction: column;
		gap: 8px;
}

.topic-card__title {
		margin: 0;
		font-weight: bold;
}

.topic-card__links {
		margin: 0;
		padding-left: 0px;
		list-style-type: none;
}

		.topic-card__links li {
				margin: 15px 0;
		}

				.topic-card__links li + li {
						margin-top: 4px;
				}

		.topic-card__links a {
				color: var(--color-primary);
				position: relative;
				padding-bottom: 2px;
				text-decoration: none;
		}

				.topic-card__links a::after {
						content: "";
						position: absolute;
						left: 0;
						bottom: 0;
						width: 100%;
						height: 2px;
						background: var(--color-accent-red);
						transform: scaleX(0);
						transform-origin: left;
						transition: transform var(--transition-fast);
				}

				.topic-card__links a:hover::after {
						transform: scaleX(1);
				}

/* Getting started strip */

/* Support */

.section--support {
		background-color: var(--color-dark-blue);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		color: #ffffff;
}

.support {
		border-radius: var(--radius-xl);
		padding: 18px 18px 16px;
		background-color: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
}

.support__content h2 {
		margin: 0 0 4px;
		color: #fff;
}

.support__content p {
		margin: 0;
		color: var(--color-surface-soft);
}

.support__actions {
		margin: 0;
}

.support__email {
		margin: 0;
		color: #ffffff;
}

		.support__email a {
				color: var(--color-accent-red);
				text-decoration: none;
				font-weight: 600;
		}

.support__actions {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
}

/* Buttons */

.btn-primary {
		padding: 9px 18px;
		border-radius: var(--radius-pill);
		border: none;
		background-color: var(--color-primary);
		color: #ffffff;
		font-weight: 600;
		text-decoration: none;
		cursor: pointer;
		transition: background-color var(--transition-fast), transform var(--transition-fast);
}

		.btn-primary:hover {
				background-color: #0b3c57;
				transform: translateY(-1px);
		}

/* Footer */

.site-footer {
		border-top: 1px solid var(--color-border-soft);
		background-color: #ffffff;
		padding: 18px 0 20px;
}

.site-footer__shell {
		display: grid;
		grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
		gap: 16px;
		align-items: flex-start;
}

.site-footer__brand {
		margin: 0 0 4px;
		font-weight: 600;
}

.site-footer__copy {
		margin: 0;
		color: var(--color-text-muted);
}

.site-footer__col--links {
		display: flex;
		flex-direction: column;
		gap: 4px;
		justify-self: end;
		align-items: flex-end;
}

		.site-footer__col--links a {
				color: var(--color-text-muted);
		}

.site-footer__version {
		margin: 6px 0 0;
		color: var(--color-text-muted);
		font-size: 0.75rem;
		letter-spacing: 0.02em;
}

/* ── Portal drawer toggle (burger in header) ──────────────── */

.portal-drawer-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.portal-drawer-toggle__bar {
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    display: block;
}

/* ── Off-canvas portal nav drawer ─────────────────────────── */

.portal-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    background-color: var(--color-dark-blue);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 280ms ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.portal-nav--open {
    transform: translateX(0);
}

.portal-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.portal-nav__header-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
}

.portal-nav__close {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
    flex-shrink: 0;
}

    .portal-nav__close:hover {
        color: #fff;
    }

.portal-nav__body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 24px;
}

.portal-nav__dashboard {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 16px;
    color: var(--color-accent-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

    .portal-nav__dashboard:hover {
        background-color: rgba(255, 100, 100, 0.1);
        text-decoration: none;
        color: var(--color-accent-red);
    }

.portal-nav__dashboard-prefix {
    font-size: 15px;
    line-height: 1;
    opacity: 0.8;
}

.portal-nav__group {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
}

.portal-nav__group-label {
    display: block;
    padding: 14px 16px 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #37c2d5;
}

.portal-nav__list {
    list-style: none;
    margin: 0;
    padding: 0 0 10px;
}

    .portal-nav__list li {
        padding: 0;
    }

.portal-nav__register {
    display: block;
    margin: 14px 16px 2px;
    padding: 10px 16px;
    background-color: var(--color-register);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: opacity var(--transition-fast);
}

    .portal-nav__register:hover {
        opacity: 0.88;
        text-decoration: none;
        color: #fff;
    }

.portal-nav__link {
    display: block;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: background-color var(--transition-fast), padding-left var(--transition-fast);
}

    .portal-nav__link:hover,
    .portal-nav__link:focus-visible {
        background-color: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        padding-left: 20px;
        text-decoration: none;
    }

/* Backdrop overlay */

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 199;
}

.drawer-overlay--visible {
    display: block;
}

/* ── End portal navigation ─────────────────────────────────── */

/* Search filter utility */

.topic-card[data-topic-hidden="true"] {
		opacity: 0.28;
}

/* Responsive */

@media (max-width: 960px) {
		.topic-grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
		}

		.getting-started {
				flex-direction: column;
		}

		.site-footer__shell {
				grid-template-columns: minmax(0, 1fr);
		}
}

@media (max-width: 720px) {
		.site-nav {
				position: fixed;
				inset: 60px 0 0 0;
				background-color: #ffffff;
				transform: translateY(-100%);
				opacity: 0;
				pointer-events: none;
				transition: transform var(--transition-med), opacity var(--transition-med);
				border-top: 1px solid var(--color-border-soft);
		}

		.site-nav--open {
				transform: translateY(0);
				opacity: 1;
				pointer-events: auto;
		}

		.site-nav__list {
				flex-direction: column;
				padding: 16px;
				gap: 10px;
		}

		.nav-toggle {
				display: inline-flex;
		}

		.topic-grid {
				grid-template-columns: minmax(0, 1fr);
		}

		.support {
				flex-direction: column;
				align-items: flex-start;
				margin-left: 10px;
				margin-right: 10px;
		}

		.site-footer__shell {
				grid-template-columns: minmax(0, 1fr);
				text-align: center;
		}

		.site-footer__col--links {
				justify-self: center;
				align-items: center;
		}
}

@media (max-width: 480px) {
		.hero__title {
				font-size: var(--font-size-h2);
		}

		.hero-search__control {
				flex-direction: column;
				align-items: stretch;
		}

				.hero-search__control button {
						width: 100%;
				}
}

.breadcrumbs a {
		border-bottom: solid 1px var(--color-text-muted);
		color: var(--color-text-muted) !important;
}

		.breadcrumbs a:hover {
				text-decoration: none !important;
				border-bottom: none;
				color: var(--color-text) !important;
		}

.breadcrumb__separator {
		color: var(--color-text-muted);
		color: var(--color-dark-blue);
}

.article-meta {
		font-size: var(--font-size-small);
		color: var(--color-accent-red);
		font-weight: bold !important;
		margin-top: 50px;
}

.article h2 {
		font-weight: bold !important;
		font-size: var(--font-size-h2) !important;
		padding-top: 20px;
}

.callout {
		padding: 10px;
		border-radius: 10px;
		margin: 30px 0px
}

.callout__title {
		font-weight: bold !important;
}

		.callout__title::before {
				content: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3e%3cpath%20d='M6.55,7.25C6.55,6.863%206.863,6.55%207.25,6.55L12.75,6.55C13.137,6.55%2013.45,6.863%2013.45,7.25C13.45,7.636%2013.137,7.95%2012.75,7.95L7.25,7.95C6.863,7.95%206.55,7.636%206.55,7.25Z'%20style='fill:rgb(0,91,211);fill-rule:nonzero;'/%3e%3cpath%20d='M7,9.05C6.613,9.05%206.3,9.363%206.3,9.75C6.3,10.136%206.613,10.45%207,10.45L9.25,10.45C9.637,10.45%209.95,10.136%209.95,9.75C9.95,9.363%209.637,9.05%209.25,9.05L7,9.05Z'%20style='fill:rgb(0,91,211);fill-rule:nonzero;'/%3e%3cpath%20d='M3.5,6.25C3.5,4.731%204.731,3.5%206.25,3.5L13.75,3.5C15.269,3.5%2016.5,4.731%2016.5,6.25L16.5,11.75C16.5,11.949%2016.421,12.14%2016.28,12.28L12.28,16.28C12.14,16.421%2011.949,16.5%2011.75,16.5L6.25,16.5C4.731,16.5%203.5,15.269%203.5,13.75L3.5,6.25ZM6.25,5C5.56,5%205,5.56%205,6.25L5,13.75C5,14.44%205.56,15%206.25,15L11,15L11,12.75C11,11.784%2011.784,11%2012.75,11L15,11L15,6.25C15,5.56%2014.44,5%2013.75,5L6.25,5ZM13.939,12.5L12.75,12.5C12.612,12.5%2012.5,12.612%2012.5,12.75L12.5,13.939L13.939,12.5Z'%20style='fill:rgb(0,91,211);'/%3e%3c/svg%3e");
		}

.callout--info {
		background-color: var(--color-tip-bg);
}

		.callout--info * {
				color: var(--color-tip) !important;
		}

.callout--warning {
		background-color: #fff6d0;
}

		.callout--warning * {
				color: #3d2f03;
		}

.callout--success {
		background-color: #d0ffd1;
}

		.callout--success * {
				color: #033d05;
		}

.callout--error {
		background-color: #ffd0d0;
}

		.callout--error * {
				color: #3d0503;
		}

.article-description {
		font-weight: normal;
}

.article-on-this-page {
		display: none;
}

.article-video {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
}

		.article-video iframe {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				border: 0;
		}

.openai-chatkit {
		position: fixed;
		bottom: 96px;
		right: 24px;
		width: 360px;
		height: 520px;
		z-index: 10000;
}

.scw-header {
		padding: 10px 14px;
		font-weight: 600;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #0e4e70;
		color: #ffffff;
}

.scw-messages {
		padding: 10px;
		flex: 1;
		overflow-y: auto;
		font-size: 14px;
}

.scw-message {
		margin-bottom: 8px;
		max-width: 80%;
		padding: 6px 9px;
		border-radius: 8px;
}

		.scw-message.user {
				margin-left: auto;
				background: #e5f2f9;
		}

		.scw-message.bot {
				margin-right: auto;
				background: #f3f4f6;
		}

.scw-form {
		display: flex;
		border-top: 1px solid #e5e7eb;
}

		.scw-form input {
				flex: 1;
				padding: 8px 10px;
				border: none;
				outline: none;
				font-size: 14px;
		}

		.scw-form button {
				border: none;
				padding: 0 14px;
				cursor: pointer;
				background: #0e4e70;
				color: white;
				font-size: 14px;
		}
.ck-wrapper{	
    background-color: #092d40;
    padding: 10px;
    border-radius: 10px;
}

.chat-trigger {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 64px;
	height: 64px;
	border-radius: 32px;
	border: none;
	background: linear-gradient(135deg, #0f2f45, #1f6a90);
	color: #fff;
	box-shadow: 0 12px 24px rgba(4, 35, 69, 0.35);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 11000;
	transition: transform 150ms ease, box-shadow 150ms ease;
}

.chat-trigger:focus-visible {
	outline: 2px solid #37c2d5;
	outline-offset: 4px;
}

.chat-trigger:active {
	transform: translateY(2px);
	box-shadow: 0 6px 12px rgba(4, 35, 69, 0.35);
}

.chat-trigger__label {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
}

.chat-trigger[aria-busy="true"] {
	pointer-events: none;
	opacity: 0.85;
}

.chat-trigger.is-hidden {
	opacity: 0;
	transform: scale(0.95);
	pointer-events: none;
}
