.msc-mokili-one,
.msc-mokili-one * {
	box-sizing: border-box;
}

.msc-mokili-one {
	--msc-navy: #0c2346;
	--msc-ink: #102341;
	--msc-blue: #1268e8;
	--msc-cyan: #24bcc7;
	--msc-line: #d6e1ee;
	--msc-muted: #60718b;
	--msc-surface: #f4f8fc;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	color: var(--msc-ink);
	font-family: inherit;
}

.msc-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.msc-mokili-one button,
.msc-mokili-one a,
.msc-mokili-one summary {
	font: inherit;
}

.msc-mokili-one button,
.msc-mokili-one a {
	-webkit-tap-highlight-color: transparent;
}

.msc-mokili-one button:focus-visible,
.msc-mokili-one a:focus-visible,
.msc-mokili-one [tabindex]:focus-visible,
.msc-mokili-one summary:focus-visible {
	outline: 3px solid #36c8d2;
	outline-offset: 3px;
}

.msc-mokili-one [hidden] {
	display: none !important;
}

.msc-kicker {
	margin: 0;
	color: #25c5cf;
	font-size: .75rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.msc-tablist {
	min-width: 0;
}

.msc-lifecycle__tabs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.msc-lifecycle__tabs button {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 9px;
	min-width: 0;
	min-height: 68px;
	padding: 12px 13px;
	border: 1px solid #2d4668;
	border-radius: 13px;
	background: #142b4c;
	color: #b9c9dc;
	font-size: .84rem;
	font-weight: 750;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.msc-lifecycle__tabs button:hover {
	transform: translateY(-2px);
	border-color: #5c7ca4;
	color: #fff;
}

.msc-lifecycle__tabs button[aria-selected="true"] {
	border-color: #45d1d9;
	background: linear-gradient(135deg, #153b5e, #0b5b66);
	box-shadow: inset 0 0 0 1px rgb(69 209 217 / 25%), 0 10px 24px rgb(0 0 0 / 12%);
	color: #fff;
}

.msc-step-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #4d678a;
}

[aria-selected="true"] > .msc-step-dot {
	background: #5ce2e8;
	box-shadow: 0 0 0 5px rgb(92 226 232 / 12%);
}

.msc-lifecycle__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
	gap: clamp(28px, 4vw, 54px);
	align-items: center;
	min-height: 510px;
	padding: clamp(28px, 4vw, 50px);
	border: 1px solid #2b4567;
	border-radius: 24px;
	background: linear-gradient(145deg, #112845, #081a34);
	box-shadow: 0 26px 70px rgb(0 0 0 / 18%);
	color: #fff;
}

.msc-lifecycle__copy h3 {
	max-width: 720px;
	margin: 12px 0 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.04;
	letter-spacing: -.045em;
}

.msc-lifecycle__copy > p:not(.msc-kicker) {
	max-width: 680px;
	margin: 22px 0 0;
	color: #bbcadc;
	font-size: 1.04rem;
	line-height: 1.75;
}

.msc-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.msc-chip-list li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 12px;
	border: 1px solid #385676;
	border-radius: 999px;
	background: rgb(255 255 255 / 4%);
	color: #e0ebf7;
	font-size: .83rem;
}

.msc-chip-list li span {
	color: #4bd6de;
}

.msc-screen {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border: 1px solid #3b5876;
	border-radius: 19px;
	background: #f6f9fc;
	box-shadow: 0 24px 60px rgb(0 0 0 / 28%);
	color: var(--msc-ink);
}

.msc-screen__bar,
.msc-site-browser {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 46px;
	padding: 8px 14px;
	border-bottom: 1px solid #d8e2ed;
	background: #eaf0f6;
}

.msc-screen__bar strong {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #365a79;
	font-size: .68rem;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.msc-window-dots {
	display: inline-flex;
	gap: 6px;
	flex: 0 0 auto;
}

.msc-window-dots i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #42c792;
}

.msc-window-dots i:first-child { background: #ff7c69; }
.msc-window-dots i:nth-child(2) { background: #f3ba45; }

.msc-screen__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 12px;
	border-bottom: 1px solid #d8e2ed;
	background: #f8fbfe;
}

.msc-screen__tabs button {
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #cbd8e7;
	border-radius: 999px;
	background: #fff;
	color: #4a607c;
	font-size: .72rem;
	font-weight: 780;
	cursor: pointer;
}

.msc-screen__tabs button[aria-selected="true"] {
	border-color: #0b7f8b;
	background: #0e5661;
	box-shadow: 0 6px 14px rgb(14 86 97 / 17%);
	color: #fff;
}

.msc-screen__viewport {
	max-height: 480px;
	min-height: 260px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #e8eef5;
	scrollbar-color: #8ba2bb #e8eef5;
	scrollbar-width: thin;
}

.msc-screen__viewport img,
.msc-dialog__scroller > img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	object-position: top center;
}

.msc-screen figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 58px;
	padding: 10px 14px 10px 18px;
	color: #40546f;
	font-size: .8rem;
	font-weight: 750;
}

.msc-screen figcaption > span,
.msc-screen figcaption button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.msc-screen figcaption button {
	min-height: 38px;
	padding: 0 13px;
	border: 1px solid #cad7e5;
	border-radius: 10px;
	background: #fff;
	color: #17466f;
	font-weight: 750;
	cursor: pointer;
}

.msc-dialog {
	position: fixed;
	z-index: 100000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 18px;
}

.msc-dialog__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(5 16 34 / 78%);
	backdrop-filter: blur(8px);
}

.msc-dialog__window {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: min(1480px, 96vw);
	height: min(920px, 94vh);
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 25%);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 45px 120px rgb(0 0 0 / 48%);
}

.msc-dialog__window > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 70px;
	padding: 12px 18px;
	border-bottom: 1px solid #d7e1ed;
	background: #f4f8fc;
}

.msc-dialog__window > header span {
	display: block;
	color: #657791;
	font-size: .69rem;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.msc-dialog__window > header h3 {
	margin: 3px 0 0;
	color: var(--msc-ink);
	font-size: 1.12rem;
}

.msc-dialog__window > header button {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid #cbd7e5;
	border-radius: 13px;
	background: #fff;
	color: var(--msc-ink);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.msc-dialog__scroller {
	min-width: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #e9eff5;
}

body.msc-dialog-open {
	overflow: hidden;
}

.msc-interaction-hint {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	color: #174c7a;
	font-size: .84rem;
	font-weight: 800;
}

.msc-features__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.msc-features__tabs button {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid var(--msc-line);
	border-radius: 11px;
	background: #f5f8fb;
	color: #42546f;
	font-weight: 760;
	cursor: pointer;
}

.msc-feature-mark {
	width: 9px;
	height: 9px;
	border: 2px solid #1fbac5;
	border-radius: 50%;
}

.msc-features__tabs button[aria-selected="true"] {
	border-color: var(--msc-navy);
	background: var(--msc-navy);
	box-shadow: 0 10px 22px rgb(14 35 70 / 17%);
	color: #fff;
}

.msc-features__tabs button[aria-selected="true"] .msc-feature-mark {
	background: #44d0d8;
}

.msc-features__panel {
	margin-top: 18px;
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid #d7e2ef;
	border-radius: 22px;
	background: var(--msc-surface);
}

.msc-features__heading {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	max-width: 900px;
}

.msc-feature-emblem {
	width: 50px;
	height: 50px;
	border: 1px solid #abe8ec;
	border-radius: 16px;
	background: radial-gradient(circle at 35% 35%, #73e6eb 0 12%, transparent 13%), linear-gradient(145deg, #e6fbfc, #c9f2f4);
}

.msc-features__heading h3 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.75rem);
	line-height: 1.08;
	letter-spacing: -.04em;
}

.msc-features__heading p {
	margin: 12px 0 0;
	color: var(--msc-muted);
	line-height: 1.65;
}

.msc-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 32px;
}

.msc-features__grid article {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	min-width: 0;
	padding: 21px;
	border: 1px solid #d9e4ef;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 10px 25px rgb(16 35 65 / 4%);
}

.msc-features__grid article > span {
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	border-radius: 50%;
	background: #dcf7f8;
	color: #087f89;
	font-weight: 900;
}

.msc-features__grid h4 { margin: 2px 0 0; font-size: .97rem; }
.msc-features__grid p { margin: 7px 0 0; color: var(--msc-muted); font-size: .86rem; line-height: 1.6; }

.msc-niches__stage {
	position: relative;
	min-width: 0;
}

.msc-niches__slide {
	position: relative;
	min-height: 610px;
	margin: 0;
	overflow: hidden;
	border-radius: 25px;
	background: var(--msc-navy);
	box-shadow: 0 28px 75px rgb(12 35 70 / 19%);
}

.msc-niches__slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.msc-niches__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgb(6 20 43 / 94%), rgb(6 20 43 / 10%) 70%);
}

.msc-niches__slide figcaption {
	position: absolute;
	z-index: 2;
	left: clamp(24px, 5vw, 52px);
	right: clamp(24px, 5vw, 52px);
	bottom: clamp(30px, 5vw, 48px);
	max-width: 820px;
	color: #fff;
}

.msc-niches__slide figcaption span {
	color: #70dce3;
	font-size: .76rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.msc-niches__slide figcaption h3 {
	margin: 12px 0 0;
	color: #fff;
	font-size: clamp(2rem, 4.5vw, 4.2rem);
	line-height: 1.04;
	letter-spacing: -.045em;
}

.msc-carousel-arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	transform: translateY(-50%);
	border: 1px solid rgb(255 255 255 / 42%);
	border-radius: 50%;
	background: rgb(9 34 68 / 72%);
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	backdrop-filter: blur(8px);
}

.msc-carousel-arrow.is-prev { left: 18px; }
.msc-carousel-arrow.is-next { right: 18px; }

.msc-niches__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.msc-niches__pills button {
	padding: 9px 13px;
	border: 1px solid #ced9e7;
	border-radius: 999px;
	background: #fff;
	color: #52647e;
	font-size: .8rem;
	font-weight: 750;
	cursor: pointer;
}

.msc-niches__pills button[aria-selected="true"] {
	border-color: var(--msc-navy);
	background: var(--msc-navy);
	color: #fff;
}

.msc-carousel-toggle {
	display: block;
	margin: 14px auto 0;
	padding: 8px 12px;
	border: 0;
	background: transparent;
	color: #52647e;
	font-size: .76rem;
	font-weight: 760;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.msc-billing {
	display: flex;
	width: max-content;
	max-width: 100%;
	margin: 0 0 28px auto;
	padding: 5px;
	border: 1px solid #cbd8e8;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 22px rgb(12 35 70 / 6%);
}

.msc-billing button {
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #4f6079;
	font-weight: 800;
	cursor: pointer;
}

.msc-billing button[aria-pressed="true"] {
	background: var(--msc-navy);
	color: #fff;
}

.msc-billing span {
	margin-left: 4px;
	color: #41d0d8;
	font-size: .65rem;
}

.msc-plan-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	align-items: stretch;
}

.msc-plan {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	padding: 30px 26px 24px;
	border: 1px solid #d5e0ed;
	border-radius: 23px;
	background: #fff;
	box-shadow: 0 15px 40px rgb(12 35 70 / 7%);
}

.msc-plan.is-featured {
	border-color: #1aaebb;
	background: var(--msc-navy);
	box-shadow: 0 25px 60px rgb(12 35 70 / 24%);
	color: #fff;
}

.msc-plan__badge {
	position: absolute;
	top: -13px;
	left: 24px;
	padding: 7px 11px;
	border-radius: 999px;
	background: #ff725e;
	color: #fff;
	font-size: .67rem;
	font-weight: 850;
	letter-spacing: .05em;
}

.msc-plan header > span {
	color: var(--msc-blue);
	font-size: .78rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.msc-plan.is-featured header > span { color: #54d9e0; }

.msc-plan header h3 {
	margin: 12px 0 0;
	color: var(--msc-ink);
	font-size: 1.32rem;
	line-height: 1.18;
	letter-spacing: -.025em;
}

.msc-plan.is-featured header h3,
.msc-plan.is-featured .msc-plan__price strong,
.msc-plan.is-featured .msc-plan__lead {
	color: #fff;
}

.msc-plan__price {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: baseline;
	gap: 6px;
	min-height: 44px;
	margin: 26px 0 0;
}

.msc-plan__price strong {
	min-width: 0;
	font-size: clamp(1.62rem, 2.15vw, 2.3rem);
	font-variant-numeric: tabular-nums;
	line-height: 1;
	letter-spacing: -.045em;
	white-space: nowrap;
}

.msc-plan__price span { color: #6c7b91; font-size: .78rem; white-space: nowrap; }
.msc-plan.is-featured .msc-plan__price span { color: #9eb1ca; }

.msc-plan__facts {
	display: grid;
	gap: 8px;
	margin-top: 19px;
	padding: 16px 0;
	border-block: 1px solid #e0e7f0;
	color: #53667f;
	font-size: .79rem;
	font-weight: 700;
}

.msc-plan.is-featured .msc-plan__facts { border-color: #294563; color: #c2d1e2; }

.msc-plan__lead {
	margin: 17px 0 0;
	font-size: .88rem;
	font-weight: 750;
	line-height: 1.55;
}

.msc-plan ul {
	display: grid;
	gap: 11px;
	margin: 19px 0 24px;
	padding: 0;
	list-style: none;
}

.msc-plan li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	color: #5d6f87;
	font-size: .8rem;
	line-height: 1.45;
}

.msc-plan li > span {
	display: grid;
	width: 21px;
	height: 21px;
	place-items: center;
	border-radius: 50%;
	background: #dff7f8;
	color: #078693;
	font-weight: 900;
}

.msc-plan.is-featured li { color: #c4d2e2; }
.msc-plan.is-featured li > span { background: #0d4b66; color: #59d7df; }

.msc-plan > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 52px;
	margin-top: auto;
	padding: 0 16px;
	border-radius: 12px;
	background: #e8f1ff;
	color: #075fcf;
	font-size: .84rem;
	font-weight: 850;
	text-decoration: none;
}

.msc-plan.is-featured > a { background: #1770ed; color: #fff; }

.msc-comparison-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
	gap: 28px;
	align-items: end;
	margin-top: 64px;
}

.msc-comparison-intro h3 { margin: 8px 0 0; font-size: clamp(1.7rem, 3vw, 2.6rem); }
.msc-comparison-intro > p { margin: 0; color: var(--msc-muted); line-height: 1.65; }

.msc-table-hint {
	display: none;
	margin: 18px 0 8px;
	color: #4e6079;
	font-size: .78rem;
	font-weight: 750;
}

.msc-table-wrap {
	max-width: 100%;
	margin-top: 20px;
	overflow-x: auto;
	border: 1px solid #d3dfec;
	border-radius: 18px;
	background: #fff;
	scrollbar-width: thin;
}

.msc-table-wrap table {
	width: 100%;
	min-width: 840px;
	border-collapse: collapse;
	font-size: .82rem;
}

.msc-table-wrap th,
.msc-table-wrap td {
	padding: 15px;
	border-bottom: 1px solid #e1e8f0;
	text-align: center;
}

.msc-table-wrap th:first-child,
.msc-table-wrap td:first-child { width: 30%; text-align: left; }
.msc-table-wrap thead th { background: #edf4fb; color: var(--msc-ink); font-weight: 850; }
.msc-table-wrap tbody th { color: #2d405f; font-weight: 750; }
.msc-included { display: inline-flex; align-items: center; gap: 5px; color: #087e88; font-weight: 800; }

.msc-site-guide {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: end;
	margin-bottom: 24px;
	padding: 25px 28px;
	border: 1px solid #d4e1ef;
	border-radius: 20px;
	background: linear-gradient(135deg, #f7fbff, #eef7ff);
}

.msc-site-guide > div > span {
	color: #0b67dc;
	font-size: .73rem;
	font-weight: 850;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.msc-site-guide h3 { margin: 8px 0 0; font-size: clamp(1.55rem, 2.8vw, 2.35rem); letter-spacing: -.035em; }
.msc-site-guide > div > p { max-width: 760px; margin: 10px 0 0; color: var(--msc-muted); line-height: 1.65; }
.msc-site-guide > p { display: grid; grid-template-columns: auto 1fr; gap: 2px 9px; margin: 0; color: #27547c; }
.msc-site-guide > p > strong { grid-row: 1 / span 2; align-self: center; font-size: 1.5rem; }
.msc-site-guide > p span { font-weight: 800; }
.msc-site-guide > p small { color: #6b7c92; }

.msc-site-tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
}

.msc-site-tabs button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 54px;
	padding: 0 12px;
	border: 1px solid #d3deeb;
	border-radius: 12px;
	background: #f5f8fc;
	color: #475b77;
	font-weight: 780;
	cursor: pointer;
}

.msc-site-tabs__mark {
	width: 12px;
	height: 12px;
	border: 2px solid #21b7c2;
	border-radius: 3px 50% 50%;
	transform: rotate(45deg);
}

.msc-site-tabs button[aria-selected="true"] {
	border-color: #1268e8;
	background: #0e2a51;
	box-shadow: 0 12px 30px rgb(12 35 70 / 17%);
	color: #fff;
}

.msc-site-preview {
	overflow: hidden;
	border: 1px solid #cfdaea;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 30px 80px rgb(12 35 70 / 15%);
}

.msc-site-browser > div:not(.msc-window-dots) {
	display: grid;
	margin-right: auto;
}

.msc-site-browser strong { color: #273e5c; font-size: .85rem; }
.msc-site-browser span { color: #6a7b91; font-size: .68rem; }
.msc-site-browser button,
.msc-site-preview__footer button {
	min-height: 38px;
	padding: 0 13px;
	border: 1px solid #c8d6e6;
	border-radius: 10px;
	background: #fff;
	color: #13558f;
	font-size: .76rem;
	font-weight: 800;
	cursor: pointer;
}

.msc-site-viewport {
	height: min(720px, 75vh);
	min-height: 520px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #fff;
	scrollbar-color: #9cb0c7 #edf2f7;
	scrollbar-width: thin;
}

.msc-site-preview__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 58px;
	padding: 9px 14px;
	border-top: 1px solid #d7e1ec;
	background: #f5f8fc;
	color: #59708d;
	font-size: .77rem;
	font-weight: 750;
}

.msc-site-preview__footer > span { display: inline-flex; align-items: center; gap: 8px; }

.msc-site-canvas {
	--msc-site-accent: #1268e8;
	--msc-site-dark: #102341;
	--msc-site-tint: #f2f7fc;
	width: 100%;
	min-width: 0;
	overflow-x: hidden;
	background: #fff;
	color: #14233a;
	font-family: inherit;
}

.msc-demo-header {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto auto;
	gap: 26px;
	align-items: center;
	min-height: 78px;
	padding: 14px clamp(20px, 5vw, 58px);
	background: #fff;
}

.msc-demo-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.msc-demo-brand > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 13px;
	background: var(--msc-site-accent);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 850;
}

.msc-demo-brand > div { display: grid; min-width: 0; }
.msc-demo-brand strong { color: var(--msc-site-dark); font-size: .92rem; white-space: nowrap; }
.msc-demo-brand small { color: #78869a; font-size: .66rem; }
.msc-demo-header nav { display: flex; gap: 20px; color: #4d5c72; font-size: .72rem; font-weight: 750; }
.msc-demo-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 42px;
	padding: 0 16px;
	border: 0;
	border-radius: 10px;
	background: var(--msc-site-accent);
	color: #fff;
	font-weight: 800;
	user-select: none;
}

.msc-demo-hero {
	position: relative;
	min-height: 540px;
	overflow: hidden;
	background: var(--msc-site-dark);
}

.msc-demo-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.msc-demo-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(8 20 37 / 88%) 0%, rgb(8 20 37 / 53%) 48%, rgb(8 20 37 / 8%) 76%);
}

.msc-demo-hero > div {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding: clamp(76px, 10vw, 130px) clamp(24px, 7vw, 82px);
	color: #fff;
}

.msc-demo-hero > div > span,
.msc-demo-title > span,
.msc-demo-about > span {
	color: var(--msc-site-accent);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.msc-demo-hero h3 {
	margin: 14px 0 0;
	color: #fff;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: .98;
	letter-spacing: -.05em;
}

.msc-demo-hero p { max-width: 610px; margin: 20px 0 0; color: #e5edf7; font-size: 1.02rem; line-height: 1.65; }
.msc-demo-hero .msc-demo-action { margin-top: 25px; min-height: 48px; background: var(--msc-site-accent); }

.msc-demo-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #dce6ee;
}

.msc-demo-strip span { padding: 17px; background: #fff; color: #345268; font-size: .78rem; font-weight: 750; text-align: center; }

.msc-demo-section,
.msc-demo-about {
	padding: clamp(55px, 8vw, 92px) clamp(24px, 7vw, 82px);
}

.msc-demo-section.is-tinted { background: var(--msc-site-tint); }
.msc-demo-title { max-width: 760px; }
.msc-demo-title h3,
.msc-demo-about h3 { margin: 10px 0 0; color: var(--msc-site-dark); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.045em; }
.msc-demo-title p,
.msc-demo-about p { margin: 14px 0 0; color: #65748a; line-height: 1.7; }

.msc-demo-card-grid,
.msc-demo-team,
.msc-demo-catalog {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.msc-demo-card-grid article,
.msc-demo-offers article,
.msc-demo-team article,
.msc-demo-catalog article {
	min-width: 0;
	padding: 22px;
	border: 1px solid #dce4ec;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 30px rgb(17 35 61 / 5%);
}

.msc-demo-card-grid article > span:first-child { color: var(--msc-site-accent); font-weight: 850; }
.msc-demo-card-grid h4,
.msc-demo-team h4,
.msc-demo-catalog h4,
.msc-demo-offers h4 { margin: 12px 0 0; color: var(--msc-site-dark); font-size: 1.03rem; }
.msc-demo-card-grid p,
.msc-demo-team p,
.msc-demo-offers p { margin: 8px 0 0; color: #66758b; font-size: .82rem; line-height: 1.6; }
.msc-demo-card-grid strong { display: block; margin-top: 15px; color: var(--msc-site-accent); font-size: .8rem; }

.msc-demo-team article { text-align: center; }
.msc-demo-team img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; }
.msc-demo-team article > span { display: block; margin-top: 12px; color: var(--msc-site-accent); font-size: .78rem; font-weight: 800; }

.msc-demo-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 210px;
	gap: 10px;
	margin-top: 30px;
}

.msc-demo-gallery figure {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 15px;
	background: #e7edf2;
}

.msc-demo-gallery figure.is-lead { grid-row: span 2; }
.msc-demo-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.msc-demo-journey ol {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.msc-demo-journey li {
	display: flex;
	gap: 12px;
	padding: 19px;
	border: 1px solid #dbe4ec;
	border-radius: 15px;
	background: #fff;
}

.msc-demo-journey li > span { color: var(--msc-site-accent); font-size: .75rem; font-weight: 850; }
.msc-demo-journey li strong { color: var(--msc-site-dark); font-size: .85rem; }
.msc-demo-journey li p { margin: 6px 0 0; color: #6a788b; font-size: .74rem; line-height: 1.5; }

.msc-demo-offers {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.msc-demo-offers article > span:first-child,
.msc-demo-catalog article > span:first-of-type { color: var(--msc-site-accent); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.msc-demo-offers article strong { display: block; margin-top: 15px; color: var(--msc-site-dark); font-size: 1.25rem; }
.msc-demo-offers article > span:last-child,
.msc-demo-catalog article > span:last-child { display: block; margin-top: 15px; color: var(--msc-site-accent); font-size: .78rem; font-weight: 800; }

.msc-demo-catalog article img { width: 100%; height: 190px; margin-bottom: 18px; border-radius: 11px; object-fit: cover; }
.msc-demo-catalog article strong { display: block; margin-top: 10px; color: var(--msc-site-dark); }

.msc-demo-reviews {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: clamp(44px, 7vw, 76px) clamp(24px, 7vw, 82px);
	background: var(--msc-site-dark);
	color: #fff;
}

.msc-demo-reviews span { color: #ffc34e; letter-spacing: .18em; }
.msc-demo-reviews h3 { margin: 12px 0 0; color: #fff; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.08; }
.msc-demo-reviews p { color: #cad4df; line-height: 1.7; }

.msc-demo-about { background: #fff; }
.msc-demo-about { max-width: none; }

.msc-demo-faq { margin-top: 26px; border-top: 1px solid #d9e2eb; }
.msc-demo-faq details { border-bottom: 1px solid #d9e2eb; }
.msc-demo-faq summary { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; color: var(--msc-site-dark); font-weight: 780; cursor: pointer; list-style: none; }
.msc-demo-faq summary::-webkit-details-marker { display: none; }
.msc-demo-faq details p { margin: 0; padding: 0 0 18px; color: #68778c; line-height: 1.65; }

.msc-demo-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin: 0 clamp(24px, 7vw, 82px) clamp(55px, 8vw, 92px);
	padding: 30px;
	border-radius: 18px;
	background: var(--msc-site-dark);
	color: #fff;
}

.msc-demo-callout span { color: #7ae0d0; font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.msc-demo-callout h3 { margin: 8px 0 0; color: #fff; font-size: 1.8rem; }
.msc-demo-callout p { margin: 8px 0 0; color: #cad7d5; }

.msc-demo-footer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 32px clamp(24px, 7vw, 82px);
	background: #f2f5f8;
}

.msc-demo-footer p { display: grid; gap: 4px; margin: 0; color: #68768a; font-size: .75rem; }
.msc-demo-footer p strong { color: var(--msc-site-dark); font-size: .78rem; }

.msc-site-dialog .msc-dialog__scroller {
	background: #fff;
}

.msc-site-dialog .msc-site-canvas {
	max-width: 1240px;
	margin: 0 auto;
}

@media (max-width: 1100px) {
	.msc-lifecycle__tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.msc-lifecycle__panel { grid-template-columns: 1fr; }
	.msc-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.msc-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.msc-demo-header { grid-template-columns: 1fr auto; }
	.msc-demo-header nav { display: none; }
	.msc-demo-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
	.msc-lifecycle__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.msc-lifecycle__tabs button { min-height: 62px; font-size: .78rem; }
	.msc-lifecycle__panel { min-height: 0; padding: 24px; border-radius: 19px; }
	.msc-lifecycle__copy h3 { font-size: 2rem; }
	.msc-screen__viewport { max-height: 420px; min-height: 220px; }
	.msc-screen figcaption { align-items: stretch; flex-direction: column; }
	.msc-screen figcaption button { justify-content: center; }
	.msc-dialog { padding: 7px; }
	.msc-dialog__window { width: 100%; height: 97vh; border-radius: 17px; }
	.msc-dialog__window > header { min-height: 62px; }
	.msc-features__tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.msc-features__tabs button { justify-content: flex-start; min-width: 0; padding: 8px 11px; font-size: .78rem; }
	.msc-features__heading { grid-template-columns: 1fr; }
	.msc-features__grid { grid-template-columns: 1fr; }
	.msc-niches__slide { min-height: 500px; }
	.msc-carousel-arrow { top: auto; bottom: 18px; width: 45px; height: 45px; transform: none; }
	.msc-niches__slide figcaption { bottom: 82px; }
	.msc-niches__slide figcaption h3 { font-size: 2rem; }
	.msc-billing { width: 100%; margin-left: 0; }
	.msc-billing button { flex: 1; }
	.msc-plan-grid { grid-template-columns: 1fr; }
	.msc-comparison-intro { grid-template-columns: 1fr; }
	.msc-table-hint { display: flex; gap: 7px; }
	.msc-site-guide { grid-template-columns: 1fr; padding: 21px; }
	.msc-site-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.msc-site-tabs button:last-child { grid-column: 1 / -1; }
	.msc-site-viewport { height: 620px; min-height: 480px; }
	.msc-site-preview__footer { align-items: stretch; flex-direction: column; }
	.msc-site-preview__footer button { width: 100%; }
	.msc-demo-header { min-height: 68px; padding: 12px 18px; }
	.msc-demo-brand strong { font-size: .78rem; }
	.msc-demo-header > .msc-demo-action { padding: 0 11px; font-size: .72rem; }
	.msc-demo-hero { min-height: 500px; }
	.msc-demo-hero__shade { background: linear-gradient(to top, rgb(8 20 37 / 90%), rgb(8 20 37 / 12%)); }
	.msc-demo-hero > div { padding-top: 210px; }
	.msc-demo-hero h3 { font-size: 2.45rem; }
	.msc-demo-strip { grid-template-columns: 1fr; }
	.msc-demo-card-grid,
	.msc-demo-team,
	.msc-demo-catalog,
	.msc-demo-offers { grid-template-columns: 1fr; }
	.msc-demo-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 160px; }
	.msc-demo-gallery figure.is-lead { grid-column: 1 / -1; grid-row: auto; }
	.msc-demo-journey ol { grid-template-columns: 1fr; }
	.msc-demo-reviews { grid-template-columns: 1fr; gap: 12px; }
	.msc-demo-callout { align-items: flex-start; flex-direction: column; }
	.msc-demo-footer { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
	.msc-lifecycle__tabs { grid-template-columns: 1fr; }
	.msc-features__tabs { grid-template-columns: 1fr; }
	.msc-site-tabs { grid-template-columns: 1fr; }
	.msc-site-tabs button:last-child { grid-column: auto; }
	.msc-site-browser > div:not(.msc-window-dots) span { display: none; }
	.msc-site-browser button { padding: 0 9px; }
}

@media (prefers-reduced-motion: reduce) {
	.msc-mokili-one *,
	.msc-mokili-one *::before,
	.msc-mokili-one *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
