:root {
	--maas-blue: #0969ff;
	--maas-blue-dark: #082f86;
	--maas-cyan: #00c2ff;
	--maas-navy: #071832;
	--maas-deep: #041020;
	--maas-text: #22304a;
	--maas-muted: #667895;
	--maas-border: #d9e7f5;
	--maas-bg: #f5f9ff;
	--maas-white: #ffffff;
	--maas-shadow: 0 24px 70px rgba(8, 47, 134, 0.12);
}

.maas-page {
	background: var(--maas-white);
	color: var(--maas-text);
	font-family: inherit;
	overflow: hidden;
}

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

.maas-page a {
	text-decoration: none;
}

.maas-hero {
	position: relative;
	min-height: clamp(300px, 37.5vw, 768px);
	aspect-ratio: 2048 / 768;
	padding: clamp(56px, 4.7vw, 96px) 0 0;
	background: url('../images/model-as-a-service/vmaas-banner.jpg') center center / cover no-repeat;
	color: var(--maas-white);
}

.maas-hero::after {
	display: none;
}

.maas-hero__grid {
	position: relative;
	z-index: 1;
	display: block;
	min-height: calc(clamp(300px, 37.5vw, 768px) - clamp(56px, 4.7vw, 96px));
}

.maas-hero__content {
	max-width: 570px;
	padding-bottom: 76px;
}

.maas-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--maas-cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.maas-eyebrow::before {
	content: '';
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.maas-hero h1,
.maas-section-heading h2,
.maas-cta h2 {
	margin: 0;
	color: inherit;
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.maas-hero h1 {
	font-size: clamp(38px, 4.8vw, 58px);
	line-height: 1.12;
}

.maas-hero p {
	max-width: 570px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.5;
}

.maas-hero__actions,
.maas-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.maas-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.maas-btn:hover {
	transform: translateY(-2px);
}

.maas-btn--primary {
	background: var(--maas-white);
	color: #0b398c;
	box-shadow: 0 18px 38px rgba(4, 16, 32, 0.18);
}

.maas-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.42);
	color: var(--maas-white);
	background: transparent;
	backdrop-filter: blur(10px);
}

.maas-btn--light {
	background: var(--maas-white);
	color: var(--maas-blue-dark);
	box-shadow: 0 18px 38px rgba(4, 16, 32, 0.18);
}

.maas-stat-panel {
	display: grid;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(16px);
}

.maas-stat-panel div {
	padding: 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.13);
}

.maas-stat-panel strong {
	display: block;
	color: var(--maas-white);
	font-size: 42px;
	line-height: 1;
}

.maas-stat-panel span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 700;
}

.maas-hero-tabs {
	position: absolute;
	left: 50%;
	right: auto;
	bottom: -1px;
	display: flex;
	align-items: stretch;
	justify-content: center;
	overflow-x: auto;
	width: 100vw;
	max-width: none;
	border-radius: 0;
	background: var(--maas-white);
	box-shadow: 0 -8px 34px rgba(4, 16, 32, 0.16);
	transform: translateX(-50%);
	scrollbar-width: thin;
}

.maas-hero-tabs a,
.maas-hero-tabs button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 176px;
	min-height: 60px;
	padding: 14px 20px;
	border: 0;
	border-right: 1px solid var(--maas-border);
	background: transparent;
	color: #252525;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 850;
	line-height: 1.25;
	text-align: center;
	white-space: nowrap;
}

.maas-hero-tabs a.is-active,
.maas-hero-tabs button.is-active {
	background: #ff0400;
	color: var(--maas-white);
}

.maas-hero-tabs a:last-child,
.maas-hero-tabs button:last-child {
	border-right: 0;
}

.maas-hero-tabs a:hover,
.maas-hero-tabs button:hover {
	color: #0b398c;
}

.maas-hero-tabs a.is-active:hover,
.maas-hero-tabs button.is-active:hover {
	color: var(--maas-white);
}

.maas-hero-tab-select {
	display: none;
}

.maas-hero-tab-select__toggle {
	display: none;
}

.maas-tab-panels [hidden] {
	display: none !important;
}

.maas-tab-panels .maas-section {
	padding: 82px 0 72px;
}

.maas-tab-panel--plain .maas-section-heading {
	display: none;
}

.maas-section {
	padding: 96px 0;
}

.maas-section:nth-of-type(even) {
	background: var(--maas-bg);
}

.maas-overview__grid,
.maas-playground__grid,
.maas-usage__grid,
.maas-accounts__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
	align-items: center;
}

.maas-section-heading {
	max-width: 900px;
}

.maas-center {
	max-width: 1180px;
	margin: 0 auto 46px;
	text-align: center;
}

.maas-center .maas-eyebrow {
	justify-content: center;
}

.maas-section-heading h2,
.maas-cta h2 {
	color: var(--maas-navy);
	font-size: clamp(30px, 3.25vw, 46px);
}

.maas-heading-nowrap h2 {
	font-size: clamp(26px, 2.6vw, 38px);
	white-space: nowrap;
}

.maas-section-heading p,
.maas-rich-text p,
.maas-info-card p,
.maas-usecase-card p,
.maas-addon-card p,
.maas-icon-card p,
.maas-model-group__heading p,
.maas-model-card p,
.maas-business-usecase-card p,
.maas-step-card p,
.maas-faq-item p,
.maas-cta p {
	color: var(--maas-muted);
	font-size: 16px;
	line-height: 1.75;
}

.maas-rich-text {
	padding: 36px;
	border: 1px solid var(--maas-border);
	border-radius: 30px;
	background: var(--maas-white);
	box-shadow: var(--maas-shadow);
}

.maas-rich-text p {
	margin: 0;
}

.maas-rich-text p + p {
	margin-top: 18px;
}

.maas-provider-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.maas-provider-cloud span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 14px 24px;
	border: 1px solid var(--maas-border);
	border-radius: 999px;
	background: var(--maas-white);
	color: var(--maas-blue-dark);
	font-size: 16px;
	font-weight: 850;
	box-shadow: 0 14px 36px rgba(8, 47, 134, 0.08);
}

.maas-card-grid,
.maas-usecase-grid,
.maas-step-grid,
.maas-billing-grid {
	display: grid;
	gap: 22px;
}

.maas-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.maas-usecase-grid {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.maas-step-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.maas-info-card,
.maas-usecase-card,
.maas-step-card,
.maas-billing-card,
.maas-account-card {
	position: relative;
	min-height: 100%;
	padding: 30px;
	border: 1px solid var(--maas-border);
	border-radius: 28px;
	background: var(--maas-white);
	box-shadow: 0 18px 50px rgba(8, 47, 134, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.maas-info-card:hover,
.maas-usecase-card:hover,
.maas-step-card:hover,
.maas-billing-card:hover,
.maas-account-card:hover {
	transform: translateY(-6px);
	border-color: rgba(9, 105, 255, 0.32);
	box-shadow: var(--maas-shadow);
}

.maas-info-card > span,
.maas-step-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 32px;
	margin-bottom: 20px;
	border-radius: 999px;
	background: rgba(9, 105, 255, 0.1);
	color: var(--maas-blue);
	font-size: 13px;
	font-weight: 850;
}

.maas-info-card h3,
.maas-usecase-card h3,
.maas-step-card h3,
.maas-billing-card h3,
.maas-account-card h3 {
	margin: 0 0 12px;
	color: var(--maas-navy);
	font-size: 22px;
	line-height: 1.25;
}

.maas-info-card p,
.maas-usecase-card p,
.maas-step-card p {
	margin: 0;
}

.maas-usecase-card {
	padding: 24px;
	background: linear-gradient(180deg, var(--maas-white), #fafdff);
}

.maas-usecase-card h3 {
	font-size: 19px;
}

.maas-pricing-note {
	max-width: 880px;
	margin: -18px auto 24px;
	color: var(--maas-muted);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.maas-pricing-view-tabs {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	max-width: max-content;
	margin: 0 0 14px auto;
	padding: 5px;
	border: 1px solid rgba(9, 105, 255, 0.13);
	border-radius: 999px;
	background: var(--maas-white);
	box-shadow: 0 10px 26px rgba(8, 47, 134, 0.08);
}

.maas-pricing-view-tabs button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	min-height: 34px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--maas-blue-dark);
	cursor: pointer;
	font-family: inherit;
	font-size: 0;
	line-height: 1;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.maas-pricing-view-tabs button.is-active,
.maas-pricing-view-tabs button[aria-selected="true"] {
	background: linear-gradient(135deg, #0b398c, #1791c8);
	box-shadow: 0 12px 26px rgba(11, 57, 140, 0.18);
	color: var(--maas-white);
}

.maas-view-icon {
	display: grid;
	width: 16px;
	height: 16px;
	gap: 3px;
}

.maas-view-icon i {
	display: block;
	border-radius: 2px;
	background: currentColor;
	opacity: 0.9;
}

.maas-view-icon--cards {
	grid-template-columns: repeat(2, 1fr);
}

.maas-view-icon--compare,
.maas-view-icon--detail {
	grid-template-columns: 1fr;
}

.maas-view-icon--compare i {
	height: 3px;
	border-radius: 999px;
}

.maas-view-icon--detail {
	gap: 2px;
}

.maas-view-icon--detail i {
	position: relative;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, currentColor 0 4px, transparent 4px 6px, currentColor 6px 100%);
}

.maas-pricing-view-panel[hidden] {
	display: none !important;
}

.maas-pricing-shell {
	position: relative;
	overflow: visible;
	margin-top: 0;
	padding: 0 64px;
}

.maas-pricing-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 72px) / 4);
	gap: 24px;
	overflow-x: auto;
	padding: 8px 4px 30px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.maas-pricing-slider::-webkit-scrollbar {
	display: none;
}

.maas-pricing-card {
	position: relative;
	display: flex;
	min-height: 610px;
	padding: 0;
	border: 1px solid var(--maas-border);
	border-radius: 20px;
	background: var(--maas-white);
	box-shadow: 0 16px 42px rgba(7, 22, 47, 0.08);
	flex-direction: column;
	overflow: hidden;
	scroll-snap-align: start;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.maas-pricing-card:hover {
	border-color: rgba(11, 57, 140, 0.28);
	box-shadow: 0 26px 62px rgba(11, 57, 140, 0.1);
	transform: translateY(-6px);
}

.maas-pricing-card--featured {
	border-color: rgba(11, 57, 140, 0.42);
	background:
		radial-gradient(circle at 88% 5%, rgba(11, 57, 140, 0.12), transparent 28%),
		var(--maas-white);
}

.maas-pricing-card__hidden-id {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.maas-pricing-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 7px 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0b398c, #1791c8);
	color: var(--maas-white);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.maas-pricing-card__head {
	padding: 24px 22px 20px;
	border-bottom: 1px solid #edf2f8;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.maas-pricing-card__head span {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(11, 57, 140, 0.09);
	color: #094eb3;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.maas-pricing-card__price {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.maas-pricing-card__head h3 {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	color: #0b398c;
	font-size: clamp(26px, 2.15vw, 38px);
	font-weight: 950;
	letter-spacing: -0.06em;
	line-height: 1;
	white-space: nowrap;
	min-width: 0;
	flex: 0 1 auto;
}

.maas-pricing-card__head h3 small {
	margin-top: 0;
	font-size: 0.48em;
	letter-spacing: 0;
	line-height: 1;
}

.maas-pricing-card__head em {
	display: inline-flex;
	margin-top: 0;
	color: var(--maas-muted);
	font-size: clamp(12px, 0.9vw, 14px);
	font-style: normal;
	font-weight: 850;
	line-height: 1;
	white-space: nowrap;
	flex: 0 0 auto;
}

.maas-pricing-card__head h4 {
	margin: 16px 0 0;
	color: var(--maas-navy);
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.maas-pricing-card__tokens {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 17px 22px;
	border-bottom: 1px solid #edf2f8;
	background: #ffffff;
}

.maas-pricing-card__tokens strong {
	color: var(--maas-blue-dark);
	font-size: 26px;
	font-weight: 950;
	line-height: 1;
}

.maas-pricing-card__tokens span {
	color: var(--maas-muted);
	font-size: 13px;
	font-weight: 850;
	text-align: right;
}

.maas-pricing-card__specs {
	display: grid;
	gap: 0;
	padding: 0 22px;
	background: #fbfdff;
}

.maas-pricing-card__specs div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
	border-bottom: 1px solid #edf2f8;
}

.maas-pricing-card__specs strong {
	color: var(--maas-navy);
	font-size: 15px;
	font-weight: 950;
	line-height: 1.35;
}

.maas-pricing-card__specs span {
	color: var(--maas-muted);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
	text-align: right;
}

.maas-pricing-feature-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0 22px 18px;
	list-style: none;
}

.maas-pricing-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 13px 0;
	border-bottom: 1px solid #edf2f8;
	color: var(--maas-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.maas-pricing-feature-list img {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	flex: 0 0 auto;
}

.maas-pricing-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0 22px 22px;
	margin-top: auto;
}

.maas-pricing-card__actions .maas-pricing-card__btn:only-child {
	grid-column: 1 / -1;
}

.maas-pricing-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 14px;
	border-radius: 8px;
	background: linear-gradient(135deg, #0b398c, #1791c8);
	box-shadow: 0 12px 24px rgba(11, 57, 140, 0.16);
	color: var(--maas-white);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 24px;
	text-transform: uppercase;
	transition: color 0.1s linear, background 0.1s linear, box-shadow 0.1s linear, transform 0.1s linear;
}

.maas-pricing-card__btn:hover {
	color: var(--maas-white);
	transform: translateY(-1px);
}

.maas-pricing-card__btn--ghost {
	border: 1px solid rgba(11, 57, 140, 0.28);
	background: rgba(11, 57, 140, 0.06);
	box-shadow: none;
	color: #094eb3;
}

.maas-pricing-card__btn--ghost:hover {
	color: #094eb3;
}

.maas-slider-btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: #8f98a6;
	box-shadow: 0 12px 26px rgba(7, 22, 47, 0.18);
	color: var(--maas-white);
	cursor: pointer;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-50%);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maas-slider-btn:hover,
.maas-slider-btn:focus-visible {
	background: #737d8c;
	box-shadow: 0 14px 30px rgba(7, 22, 47, 0.22);
	color: var(--maas-white);
	transform: translateY(-50%) scale(1.04);
}

.maas-slider-btn--prev { left: 0; }
.maas-slider-btn--next { right: 0; }

.maas-pricing-table-wrap {
	margin-top: 24px;
	border: 1px solid var(--maas-border);
	border-radius: 24px;
	background: var(--maas-white);
	box-shadow: 0 18px 50px rgba(8, 47, 134, 0.08);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.maas-pricing-table {
	width: 100%;
	min-width: 930px;
	border-collapse: collapse;
	color: var(--maas-text);
}

.maas-pricing-table--detail {
	min-width: 1160px;
}

.maas-pricing-table th,
.maas-pricing-table td {
	padding: 18px 16px;
	border-bottom: 1px solid #edf2f8;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
	text-align: left;
	vertical-align: middle;
}

.maas-pricing-table thead th {
	background: linear-gradient(180deg, #f7fbff, #eef6ff);
	color: var(--maas-blue-dark);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
}

.maas-pricing-table tbody tr:last-child td {
	border-bottom: 0;
}

.maas-pricing-table tbody tr.is-featured td {
	background: rgba(11, 57, 140, 0.035);
}

.maas-pricing-table td strong {
	display: block;
	color: var(--maas-navy);
	font-size: 15px;
	font-weight: 950;
	white-space: nowrap;
}

.maas-pricing-table td span {
	display: block;
	margin-top: 4px;
	color: var(--maas-muted);
	font-size: 13px;
	font-weight: 750;
}

.maas-pricing-table td b {
	display: inline-flex;
	align-items: baseline;
	color: #0b398c;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.maas-pricing-table td em {
	display: inline-flex;
	margin-left: 4px;
	color: var(--maas-muted);
	font-size: 13px;
	font-style: normal;
	font-weight: 850;
	white-space: nowrap;
}

.maas-table-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 10px 14px;
	border-radius: 8px;
	background: linear-gradient(135deg, #0b398c, #1791c8);
	box-shadow: 0 10px 22px rgba(11, 57, 140, 0.14);
	color: var(--maas-white);
	font-size: 12px;
	font-weight: 950;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.maas-table-action:hover {
	color: var(--maas-white);
	transform: translateY(-1px);
}

.maas-common-card {
	margin-top: 26px;
	padding: 34px;
	border: 1px solid rgba(9, 105, 255, 0.18);
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(9, 105, 255, 0.08), rgba(0, 194, 255, 0.08));
	box-shadow: 0 18px 50px rgba(8, 47, 134, 0.08);
}

.maas-common-card h3 {
	margin: 0 0 22px;
	color: var(--maas-navy);
	font-size: 24px;
	line-height: 1.25;
}

.maas-feature-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.maas-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--maas-blue-dark);
	font-weight: 750;
	line-height: 1.55;
}

.maas-feature-list img {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	flex: 0 0 auto;
}

.maas-addon-grid,
.maas-icon-card-grid,
.maas-model-grid,
.maas-business-usecase-grid {
	display: grid;
	gap: 22px;
}

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

.maas-addon-card,
.maas-icon-card,
.maas-model-card,
.maas-business-usecase-card,
.maas-faq-item {
	position: relative;
	min-height: 100%;
	border: 1px solid var(--maas-border);
	background: var(--maas-white);
	box-shadow: 0 18px 50px rgba(8, 47, 134, 0.08);
}

.maas-addon-card,
.maas-icon-card,
.maas-model-card,
.maas-business-usecase-card {
	padding: 30px;
	border-radius: 28px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.maas-addon-card:hover,
.maas-icon-card:hover,
.maas-model-card:hover,
.maas-business-usecase-card:hover {
	transform: translateY(-6px);
	border-color: rgba(9, 105, 255, 0.32);
	box-shadow: var(--maas-shadow);
}

.maas-addon-card {
	overflow: hidden;
	background: radial-gradient(circle at right top, rgba(0, 194, 255, 0.14), transparent 42%), var(--maas-white);
}

.maas-addon-card__badge,
.maas-model-card__tags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(9, 105, 255, 0.1);
	color: var(--maas-blue);
	font-size: 12px;
	font-weight: 850;
}

.maas-addon-card h3,
.maas-icon-card h3,
.maas-business-usecase-card h3 {
	margin: 18px 0 12px;
	color: var(--maas-navy);
	font-size: 22px;
	line-height: 1.25;
}

.maas-addon-card p,
.maas-icon-card p,
.maas-business-usecase-card p {
	margin: 0;
}

.maas-addon-card__price {
	display: block;
	margin: 0 0 14px;
	color: var(--maas-blue-dark);
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1;
}

.maas-icon-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.maas-icon-card-grid--auto {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.maas-icon-card {
	background: linear-gradient(180deg, var(--maas-white), #fafdff);
}

.maas-icon-card--feature {
	padding: 26px;
}

.maas-icon-card--feature h3 {
	font-size: 20px;
}

.maas-icon-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: rgba(9, 105, 255, 0.08);
}

.maas-icon-card__icon img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.maas-model-group {
	margin-top: 34px;
}

.maas-model-group + .maas-model-group {
	margin-top: 46px;
}

.maas-model-group__heading {
	margin-bottom: 20px;
	padding: 30px;
	border-radius: 28px;
	background: linear-gradient(135deg, var(--maas-navy), var(--maas-blue-dark));
	color: var(--maas-white);
	box-shadow: 0 22px 60px rgba(4, 16, 32, 0.18);
}

.maas-model-group__heading h3 {
	margin: 0;
	color: var(--maas-white);
	font-size: 28px;
	line-height: 1.2;
}

.maas-model-group__heading p {
	max-width: 860px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.78);
}

.maas-model-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.maas-model-card h4 {
	margin: 0 0 14px;
	color: var(--maas-navy);
	font-size: 20px;
	line-height: 1.35;
	word-break: break-word;
}

.maas-model-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.maas-model-card p {
	margin: 0;
}

.maas-business-usecase-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.maas-business-usecase-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, var(--maas-white), #f7fbff);
}

.maas-business-usecase-card strong {
	display: block;
	margin-top: auto;
	padding-top: 18px;
	color: var(--maas-blue-dark);
	font-size: 14px;
	line-height: 1.55;
}

.maas-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 14px;
	max-width: 1180px;
	margin: 0 auto;
}

.maas-faq-item {
	border-radius: 22px;
	overflow: hidden;
}

.maas-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 60px 22px 24px;
	cursor: pointer;
	color: var(--maas-navy);
	font-size: 18px;
	font-weight: 850;
	line-height: 1.35;
	list-style: none;
}

.maas-faq-item summary::-webkit-details-marker {
	display: none;
}

.maas-faq-item summary::after {
	content: '+';
	position: absolute;
	right: 24px;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(9, 105, 255, 0.1);
	color: var(--maas-blue);
	transform: translateY(-50%);
}

.maas-faq-item[open] summary::after {
	content: '−';
}

.maas-faq-item p {
	margin: 0;
	padding: 0 24px 24px;
}

.maas-playground {
	background: radial-gradient(circle at left top, rgba(0, 194, 255, 0.12), transparent 36%), var(--maas-deep) !important;
	color: var(--maas-white);
}

.maas-playground .maas-section-heading h2 {
	color: var(--maas-white);
}

.maas-playground .maas-section-heading p,
.maas-playground .maas-check-list li {
	color: rgba(255, 255, 255, 0.78);
}

.maas-console-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 30px;
	background: #06111f;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.maas-console-card__bar {
	display: flex;
	gap: 8px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.05);
}

.maas-console-card__bar span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--maas-cyan);
}

.maas-console-card__bar span:nth-child(2) {
	background: #ffd166;
}

.maas-console-card__bar span:nth-child(3) {
	background: #ef476f;
}

.maas-page .maas-console-card pre {
	margin: 0;
	padding: 28px;
	overflow: auto;
	white-space: pre-wrap;
	color: #ffffff !important;
	font-size: 14px;
	line-height: 1.75;
}

.maas-page .maas-console-card pre code {
	color: #ffffff !important;
	background: transparent !important;
}

.maas-check-list {
	display: grid;
	gap: 16px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.maas-check-list li,
.maas-billing-card li,
.maas-account-card li {
	position: relative;
	padding-left: 28px;
	line-height: 1.65;
}

.maas-check-list li::before,
.maas-billing-card li::before,
.maas-account-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--maas-blue), var(--maas-cyan));
}

.maas-step-card {
	background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.maas-billing-card,
.maas-account-card {
	padding: 34px;
}

.maas-billing-card ul,
.maas-account-card ul {
	display: grid;
	gap: 14px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	color: var(--maas-muted);
}

.maas-formula-card {
	margin-top: 24px;
	padding: 28px;
	border-radius: 26px;
	background: var(--maas-navy);
	color: var(--maas-white);
	box-shadow: var(--maas-shadow);
}

.maas-formula-card strong {
	display: block;
	margin-bottom: 12px;
	color: var(--maas-cyan);
	font-size: 18px;
}

.maas-formula-card code {
	display: block;
	overflow-x: auto;
	white-space: normal;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.7;
}

.maas-account-card:first-child {
	border-top: 5px solid var(--maas-blue);
}

.maas-account-card:last-child {
	border-top: 5px solid var(--maas-cyan);
}

.maas-usage__grid {
	align-items: stretch;
}

.maas-usage-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.maas-usage-list div {
	display: flex;
	align-items: center;
	min-height: 104px;
	padding: 24px;
	border: 1px solid var(--maas-border);
	border-radius: 24px;
	background: var(--maas-white);
	color: var(--maas-blue-dark);
	font-weight: 850;
	box-shadow: 0 14px 36px rgba(8, 47, 134, 0.08);
}

.maas-cta {
	padding: 40px 0 110px;
	background: var(--maas-bg);
}

.maas-cta__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: center;
	padding: 52px;
	border-radius: 34px;
	background: linear-gradient(135deg, var(--maas-blue-dark), var(--maas-blue) 58%, var(--maas-cyan));
	color: var(--maas-white);
	box-shadow: 0 30px 90px rgba(9, 105, 255, 0.24);
}

.maas-cta h2 {
	color: var(--maas-white);
}

.maas-cta p {
	max-width: 760px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.82);
}

.maas-cta .maas-eyebrow {
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1280px) {
	.maas-card-grid--four,
	.maas-step-grid,
	.maas-icon-card-grid--three,
	.maas-icon-card-grid--auto,
	.maas-model-grid,
	.maas-business-usecase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.maas-usecase-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.maas-pricing-slider {
		grid-auto-columns: calc((100% - 48px) / 3);
	}
}

@media (max-width: 980px) {
	.maas-hero {
		min-height: clamp(260px, 37.5vw, 368px);
		padding: clamp(48px, 7vw, 84px) 0 0;
		background-position: center center;
	}

	.maas-hero__grid {
		min-height: calc(clamp(260px, 37.5vw, 368px) - clamp(48px, 7vw, 84px));
	}

	.maas-hero__content {
		max-width: 540px;
		padding-bottom: 76px;
	}

	.maas-hero-tabs {
		max-width: 100%;
		border-radius: 0;
		justify-content: flex-start;
	}

	.maas-hero-tabs a,
	.maas-hero-tabs button {
		min-width: 148px;
		font-size: 14px;
	}

	.maas-hero__grid,
	.maas-overview__grid,
	.maas-playground__grid,
	.maas-usage__grid,
	.maas-accounts__grid,
	.maas-cta__box {
		grid-template-columns: 1fr;
	}

	.maas-stat-panel {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.maas-section {
		padding: 74px 0;
	}

	.maas-billing-grid,
	.maas-addon-grid {
		grid-template-columns: 1fr;
	}

	.maas-cta__actions {
		margin-top: 0;
	}

	.maas-pricing-shell {
		padding: 0 22px;
	}

	.maas-pricing-view-tabs {
		max-width: 100%;
		overflow-x: auto;
		justify-content: flex-start;
		scrollbar-width: none;
	}

	.maas-pricing-view-tabs::-webkit-scrollbar {
		display: none;
	}

	.maas-pricing-slider {
		grid-auto-columns: minmax(300px, calc((100% - 24px) / 2));
	}

	.maas-heading-nowrap h2 {
		white-space: normal;
	}
}

@media (max-width: 680px) {
	.maas-hero {
		min-height: clamp(220px, 56.4vw, 255px);
		aspect-ratio: auto;
		padding: clamp(34px, 8vw, 54px) 0 0;
		background-position: center center;
	}

	.maas-hero__grid {
		min-height: calc(clamp(220px, 37.5vw, 255px) - clamp(34px, 8vw, 54px));
	}

	.maas-hero__content {
		padding-bottom: 64px;
	}

	.maas-hero p {
		font-size: 17px;
	}

	.maas-hero-tab-select {
		position: relative;
		left: 0;
		right: 0;
		display: block;
		z-index: 4;
		margin-top: 24px;
		padding: 0;
	}

	.maas-hero-tab-select__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 54px;
		padding: 14px 18px;
		border: 0;
		border-radius: 16px;
		background: var(--maas-white);
		box-shadow: 0 14px 36px rgba(4, 16, 32, 0.2);
		color: var(--maas-navy);
		cursor: pointer;
		font-family: inherit;
		font-size: 15px;
		font-weight: 950;
		line-height: 1.25;
		text-align: left;
	}

	.maas-hero-tab-select__toggle i {
		width: 10px;
		height: 10px;
		border-right: 2px solid #0b398c;
		border-bottom: 2px solid #0b398c;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 0.2s ease;
		flex: 0 0 auto;
	}

	.maas-hero-tab-select__toggle[aria-expanded="true"] i {
		transform: rotate(225deg) translateY(-2px);
	}

	.maas-hero-tabs {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		display: none;
		width: 100%;
		max-height: 340px;
		margin: 10px 0 0;
		padding: 8px;
		border-radius: 18px;
		box-shadow: 0 22px 60px rgba(4, 16, 32, 0.24);
		transform: none;
		overflow: auto;
		z-index: 5;
	}

	.maas-hero-tabs.is-open {
		display: grid;
		grid-template-columns: 1fr;
	}

	.maas-hero-tabs a,
	.maas-hero-tabs button {
		justify-content: flex-start;
		width: 100%;
		min-width: 0;
		min-height: 46px;
		padding: 12px 14px;
		border-right: 0;
		border-bottom: 1px solid var(--maas-border);
		border-radius: 12px;
		font-size: 14px;
		text-align: left;
	}

	.maas-hero-tabs a:last-child,
	.maas-hero-tabs button:last-child {
		border-bottom: 0;
	}

	.maas-hero__actions,
	.maas-cta__actions {
		flex-direction: column;
	}

	.maas-btn {
		width: 100%;
	}

	.maas-stat-panel,
	.maas-card-grid--four,
	.maas-usecase-grid,
	.maas-step-grid,
	.maas-usage-list,
	.maas-feature-list,
	.maas-icon-card-grid--three,
	.maas-icon-card-grid--auto,
	.maas-model-grid,
	.maas-business-usecase-grid {
		grid-template-columns: 1fr;
	}

	.maas-section-heading h2,
	.maas-cta h2 {
		font-size: 32px;
	}

	.maas-rich-text,
	.maas-info-card,
	.maas-usecase-card,
	.maas-common-card,
	.maas-addon-card,
	.maas-icon-card,
	.maas-model-group__heading,
	.maas-model-card,
	.maas-business-usecase-card,
	.maas-step-card,
	.maas-billing-card,
	.maas-account-card,
	.maas-cta__box {
		padding: 24px;
		border-radius: 22px;
	}

	.maas-pricing-shell {
		padding: 0;
	}

	.maas-pricing-view-tabs {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
		width: 100%;
		max-width: 100%;
		padding: 8px;
		border-radius: 18px;
	}

	.maas-pricing-view-tabs button {
		width: 100%;
		min-height: 42px;
		padding: 11px 14px;
		border-radius: 12px;
		font-size: 13px;
	}

	.maas-pricing-table-wrap {
		margin-top: 18px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		overflow: visible;
	}

	.maas-pricing-table,
	.maas-pricing-table--detail {
		min-width: 0;
	}

	.maas-pricing-table thead {
		display: none;
	}

	.maas-pricing-table,
	.maas-pricing-table tbody,
	.maas-pricing-table tr,
	.maas-pricing-table td {
		display: block;
		width: 100%;
	}

	.maas-pricing-table tr {
		margin-bottom: 14px;
		border: 1px solid var(--maas-border);
		border-radius: 18px;
		background: var(--maas-white);
		box-shadow: 0 14px 34px rgba(8, 47, 134, 0.08);
		overflow: hidden;
	}

	.maas-pricing-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding: 13px 16px;
		font-size: 13px;
		text-align: right;
	}

	.maas-pricing-table td::before {
		content: attr(data-label);
		max-width: 48%;
		color: var(--maas-blue-dark);
		font-size: 12px;
		font-weight: 950;
		line-height: 1.35;
		text-align: left;
		text-transform: uppercase;
	}

	.maas-pricing-table td strong,
	.maas-pricing-table td span {
		text-align: right;
	}

	.maas-table-action {
		min-width: 138px;
	}

	.maas-pricing-slider {
		grid-auto-columns: 92%;
		padding-bottom: 22px;
	}

	.maas-pricing-card {
		min-height: auto;
		border-radius: 16px;
	}

	.maas-pricing-card__head,
	.maas-pricing-card__tokens,
	.maas-pricing-card__specs,
	.maas-pricing-feature-list,
	.maas-pricing-card__actions {
		padding-left: 18px;
		padding-right: 18px;
	}

	.maas-pricing-card__head h3 {
		font-size: clamp(25px, 8.2vw, 34px);
	}

	.maas-pricing-card__actions {
		grid-template-columns: 1fr;
	}

	.maas-slider-btn {
		display: none;
	}

	.maas-faq-list {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.maas-faq-item summary {
		padding: 20px 54px 20px 20px;
		font-size: 16px;
	}

	.maas-faq-item p {
		padding: 0 20px 20px;
	}

	.maas-console-card pre {
		padding: 22px;
		font-size: 13px;
	}
}
