.cst-site {
	--cst-ink: #12203a;
	--cst-ink-soft: #2c3a55;
	--cst-purple: #6b2c91;
	--cst-purple-dark: #481b61;
	--cst-purple-light: #f3ecf8;
	--cst-blue: #4361ee;
	--cst-surface: #f4f6fb;
	--cst-white: #fff;
	--cst-line: #dfe4ee;
	--cst-muted: #60708a;
	--cst-success: #16745a;
	--cst-error: #b42318;
	--cst-radius-sm: 8px;
	--cst-radius: 16px;
	--cst-radius-lg: 28px;
	--cst-shadow: 0 24px 70px rgba(18, 32, 58, 0.12);
	color: var(--cst-ink);
	background: var(--cst-white);
	font-family: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	isolation: isolate;
}

.cst-site *,
.cst-site *::before,
.cst-site *::after {
	box-sizing: border-box;
}

.cst-site [hidden] {
	display: none !important;
}

.cst-site img {
	display: block;
	max-width: 100%;
}

.cst-site h1,
.cst-site h2,
.cst-site h3,
.cst-site p,
.cst-site dl,
.cst-site dd,
.cst-site figure {
	margin: 0;
}

.cst-site h1,
.cst-site h2,
.cst-site h3,
.cst-site strong,
.cst-site .cst-button {
	font-family: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cst-site h1,
.cst-site h2,
.cst-site h3 {
	color: var(--cst-ink);
	font-weight: 800;
	letter-spacing: -0.035em;
}

.cst-page-main {
	overflow: hidden;
}

.cst-shell {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.cst-eyebrow {
	color: var(--cst-purple);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.cst-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 22px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.cst-button:hover {
	transform: translateY(-1px);
}

.cst-button:disabled {
	opacity: 0.42;
	cursor: not-allowed;
	transform: none;
}

.cst-button--primary {
	color: var(--cst-white) !important;
	background: var(--cst-purple);
	box-shadow: 0 12px 28px rgba(107, 44, 145, 0.24);
}

.cst-button--primary:hover {
	color: var(--cst-white) !important;
	background: var(--cst-purple-dark);
}

.cst-button--secondary {
	color: var(--cst-ink) !important;
	background: var(--cst-white);
	border-color: #b9c3d3;
}

.cst-button--secondary:hover {
	color: var(--cst-purple-dark) !important;
	border-color: var(--cst-purple);
}

.cst-button--light {
	color: var(--cst-purple-dark) !important;
	background: var(--cst-white);
}

.cst-button--outline-light {
	color: var(--cst-white) !important;
	border-color: rgba(255, 255, 255, 0.7);
	background: transparent;
}

.cst-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cst-hero {
	position: relative;
	padding: clamp(72px, 8vw, 118px) 0 72px;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 0%, rgba(107, 44, 145, 0.12), transparent 32%),
		linear-gradient(180deg, #fff 0%, #f8f7fb 100%);
}

.cst-hero::after {
	position: absolute;
	right: -180px;
	bottom: -260px;
	width: 620px;
	height: 620px;
	border: 88px solid rgba(67, 97, 238, 0.07);
	border-radius: 50%;
	content: "";
	z-index: -1;
}

.cst-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(520px, 7fr);
	align-items: center;
	gap: clamp(44px, 6vw, 84px);
}

.cst-hero__copy {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 26px;
}

.cst-hero h1 {
	max-width: 760px;
	font-size: clamp(46px, 5.25vw, 76px);
	line-height: 0.98;
}

.cst-hero h1 span {
	color: var(--cst-purple);
}

.cst-hero__lead {
	max-width: 590px;
	color: var(--cst-ink-soft);
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
}

.cst-hero__assurance {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	color: var(--cst-muted);
	font-size: 12px;
	font-weight: 700;
}

.cst-hero__assurance span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.cst-hero__assurance span::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cst-purple);
	content: "";
}

.cst-hero__media {
	position: relative;
	min-height: 570px;
	overflow: hidden;
	border-radius: var(--cst-radius-lg);
	box-shadow: var(--cst-shadow);
}

.cst-hero__media::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(18, 32, 58, 0.7));
	content: "";
	z-index: 1;
}

.cst-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 570px;
	object-fit: cover;
}

.cst-hero__media--portrait img {
	object-position: center top;
}

.cst-hero__media figcaption {
	position: absolute;
	right: 28px;
	bottom: 24px;
	left: 28px;
	color: var(--cst-white);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	z-index: 2;
}

.cst-proof {
	color: var(--cst-white);
	background: var(--cst-ink);
}

.cst-proof__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cst-proof__grid > div {
	min-height: 190px;
	padding: 42px 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.cst-proof__grid > div:first-child {
	padding-left: 0;
}

.cst-proof__grid > div:last-child {
	border-right: 0;
}

.cst-proof strong,
.cst-proof span {
	display: block;
}

.cst-proof strong {
	margin-bottom: 14px;
	color: #d8b4f0;
	font-size: clamp(29px, 3vw, 42px);
	font-weight: 800;
	line-height: 1;
}

.cst-proof span {
	max-width: 210px;
	color: #d7ddeb;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.5;
	text-transform: uppercase;
}

.cst-section {
	padding: clamp(80px, 9vw, 132px) 0;
}

.cst-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 52px;
}

.cst-section-heading h2,
.cst-equipment h2,
.cst-builder-intro h2,
.cst-final-cta h2 {
	margin-top: 14px;
	font-size: clamp(36px, 4.2vw, 58px);
	line-height: 1.05;
}

.cst-section-heading > p,
.cst-equipment__copy > p,
.cst-builder-intro > p {
	color: var(--cst-muted);
	font-size: 17px;
}

.cst-use-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 2px solid var(--cst-ink);
}

.cst-use-card {
	min-height: 220px;
	padding: 28px 26px 28px 0;
	border-bottom: 1px solid var(--cst-line);
}

.cst-use-card:not(:nth-child(4n + 1)) {
	padding-left: 26px;
	border-left: 1px solid var(--cst-line);
}

.cst-use-card > span {
	display: block;
	margin-bottom: 30px;
	color: var(--cst-purple);
	font-size: 12px;
	font-weight: 800;
}

.cst-use-card h3 {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.2;
}

.cst-use-card p {
	color: var(--cst-muted);
	font-size: 14px;
}

.cst-section--field {
	background:
		radial-gradient(circle at 0% 0%, rgba(107, 44, 145, 0.08), transparent 34%),
		var(--cst-surface);
}

.cst-scene-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.cst-scene-card {
	overflow: hidden;
	border: 1px solid var(--cst-line);
	border-radius: var(--cst-radius);
	background: var(--cst-white);
	box-shadow: 0 14px 38px rgba(18, 32, 58, 0.08);
}

.cst-scene-card__media {
	aspect-ratio: 3 / 4;
	background: #dce6f4;
}

.cst-scene-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cst-scene-card__content {
	padding: 24px;
}

.cst-scene-card__content .cst-eyebrow {
	margin-bottom: 12px;
}

.cst-scene-card__content h3 {
	margin-bottom: 10px;
	font-size: 23px;
	line-height: 1.15;
}

.cst-scene-card__content > p:last-child {
	color: var(--cst-muted);
	font-size: 14px;
}

.cst-section--equipment {
	background: var(--cst-surface);
}

.cst-equipment {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	align-items: center;
	gap: clamp(52px, 7vw, 100px);
}

.cst-equipment--copy-only {
	grid-template-columns: minmax(0, 760px);
	justify-content: start;
}

.cst-equipment__copy > p {
	margin: 24px 0;
}

.cst-check-list {
	display: grid;
	gap: 12px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.cst-check-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 700;
}

.cst-check-list li::before {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	border-radius: 50%;
	color: var(--cst-white);
	background: var(--cst-purple);
	font-size: 12px;
	content: "✓";
}

.cst-text-link {
	padding: 0;
	border: 0;
	color: var(--cst-purple) !important;
	background: transparent;
	font: inherit;
	font-weight: 800;
	text-decoration: none !important;
	cursor: pointer;
}

.cst-builder-section {
	padding: clamp(80px, 9vw, 132px) 0;
	background:
		radial-gradient(circle at 100% 0%, rgba(107, 44, 145, 0.1), transparent 30%),
		var(--cst-white);
}

.cst-builder-intro {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 0.55fr);
	align-items: end;
	gap: 48px;
	margin-bottom: 44px;
}

.cst-builder {
	display: grid;
	grid-template-columns: 220px minmax(420px, 1fr) 290px;
	min-height: 680px;
	overflow: hidden;
	border: 1px solid var(--cst-line);
	border-radius: var(--cst-radius-lg);
	background: var(--cst-white);
	box-shadow: var(--cst-shadow);
}

.cst-builder__steps {
	padding: 34px 24px;
	color: var(--cst-white);
	background: var(--cst-ink);
}

.cst-builder__steps ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cst-step-button {
	display: grid;
	width: 100%;
	grid-template-columns: 28px 1fr;
	align-items: center;
	gap: 10px;
	padding: 12px 10px;
	border: 0;
	border-radius: 10px;
	color: #aeb9ca;
	background: transparent;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
}

.cst-step-button:hover,
.cst-step-button[aria-current="step"] {
	color: var(--cst-white);
	background: rgba(255, 255, 255, 0.1);
}

.cst-step-button.is-complete {
	color: #d8b4f0;
}

.cst-step-button__number {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 11px;
}

.cst-builder__workspace {
	padding: 42px clamp(28px, 4vw, 54px);
}

.cst-progress {
	height: 4px;
	overflow: hidden;
	margin-bottom: 26px;
	border-radius: 999px;
	background: var(--cst-line);
}

.cst-progress span {
	display: block;
	width: 16.666%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--cst-purple), var(--cst-blue));
	transition: width 200ms ease;
}

.cst-step-count {
	margin-bottom: 8px !important;
	color: var(--cst-purple);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cst-builder__workspace > h3,
.cst-panel-heading h3,
.cst-quote h3,
.cst-success h3 {
	font-size: clamp(29px, 3vw, 42px);
	line-height: 1.08;
}

.cst-step-hint {
	margin: 10px 0 28px !important;
	color: var(--cst-muted);
}

.cst-options {
	display: grid;
	gap: 12px;
}

.cst-option-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.cst-option-card,
.cst-toggle-row,
.cst-choice-pill,
.cst-counter button {
	font: inherit;
	cursor: pointer;
}

.cst-option-card {
	position: relative;
	display: flex;
	min-height: 118px;
	align-items: flex-start;
	flex-direction: column;
	gap: 7px;
	padding: 18px;
	border: 2px solid var(--cst-line);
	border-radius: var(--cst-radius);
	color: var(--cst-ink);
	background: var(--cst-white);
	text-align: left;
	transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.cst-option-card:hover {
	border-color: #a97cc9;
	transform: translateY(-1px);
}

.cst-option-card[aria-pressed="true"] {
	border-color: var(--cst-purple);
	background: var(--cst-purple-light);
}

.cst-option-card[aria-pressed="true"]::after {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	color: var(--cst-white);
	background: var(--cst-purple);
	font-size: 12px;
	content: "✓";
}

.cst-option-card strong,
.cst-toggle-row strong {
	padding-right: 24px;
	font-size: 16px;
	line-height: 1.25;
}

.cst-option-card span,
.cst-toggle-row span {
	color: var(--cst-muted);
	font-size: 13px;
	line-height: 1.45;
}

.cst-subchoice {
	margin-top: 12px;
	padding-top: 22px;
	border-top: 1px solid var(--cst-line);
}

.cst-subchoice > strong {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
}

.cst-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cst-choice-pill {
	min-width: 48px;
	min-height: 44px;
	padding: 8px 15px;
	border: 1px solid #b9c3d3;
	border-radius: 999px;
	color: var(--cst-ink);
	background: var(--cst-white);
	font-size: 13px;
	font-weight: 800;
}

.cst-choice-pill[aria-pressed="true"] {
	border-color: var(--cst-purple);
	color: var(--cst-white);
	background: var(--cst-purple);
}

.cst-toggle-list {
	border-top: 1px solid var(--cst-line);
}

.cst-toggle-row {
	display: grid;
	width: 100%;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 20px 0;
	border: 0;
	border-bottom: 1px solid var(--cst-line);
	color: var(--cst-ink);
	background: transparent;
	text-align: left;
}

.cst-toggle-copy {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 5px;
}

.cst-toggle {
	position: relative;
	width: 48px;
	height: 27px;
	border-radius: 999px;
	background: #b9c3d3;
	transition: background 150ms ease;
}

.cst-toggle::after {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--cst-white);
	box-shadow: 0 1px 4px rgba(18, 32, 58, 0.28);
	content: "";
	transition: transform 150ms ease;
}

[aria-pressed="true"] > .cst-toggle {
	background: var(--cst-purple);
}

[aria-pressed="true"] > .cst-toggle::after {
	transform: translateX(21px);
}

.cst-quantity-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin-top: 22px;
}

.cst-quantity-row > div > strong {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
}

.cst-counter {
	display: inline-grid;
	grid-template-columns: 48px 64px 48px;
	overflow: hidden;
	border: 1px solid #b9c3d3;
	border-radius: 12px;
}

.cst-counter button,
.cst-counter output {
	display: grid;
	height: 48px;
	place-items: center;
	border: 0;
	color: var(--cst-ink);
	background: var(--cst-white);
	font-size: 20px;
	font-weight: 800;
}

.cst-counter button:first-child {
	border-right: 1px solid var(--cst-line);
}

.cst-counter button:last-child {
	border-left: 1px solid var(--cst-line);
}

.cst-builder__controls,
.cst-form-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid var(--cst-line);
}

.cst-builder__summary {
	padding: 42px 28px;
	border-left: 1px solid var(--cst-line);
	background: var(--cst-surface);
}

.cst-builder__summary > h3,
.cst-quote__attached > h3 {
	margin: 10px 0 20px;
	font-size: 23px;
	line-height: 1.15;
}

.cst-builder dl,
.cst-quote dl {
	border-top: 2px solid var(--cst-ink);
}

.cst-builder dl > div,
.cst-quote dl > div {
	padding: 12px 0;
	border-bottom: 1px solid var(--cst-line);
}

.cst-builder dt,
.cst-quote dt {
	margin-bottom: 3px;
	color: var(--cst-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cst-builder dd,
.cst-quote dd {
	color: var(--cst-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.45;
}

.cst-summary-note {
	margin-top: 22px !important;
	color: var(--cst-muted);
	font-size: 11px;
}

.cst-review,
.cst-quote,
.cst-success {
	grid-column: 1 / -1;
	padding: clamp(32px, 5vw, 64px);
}

.cst-panel-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 34px;
}

.cst-panel-heading h3 {
	margin-top: 9px;
}

.cst-review__rows {
	border-top: 2px solid var(--cst-ink);
}

.cst-review-row {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--cst-line);
}

.cst-review-row > span:first-child {
	color: var(--cst-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cst-review-row strong {
	font-size: 15px;
}

.cst-quote {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
	gap: clamp(36px, 6vw, 72px);
}

.cst-quote__form-wrap > p:not(.cst-eyebrow) {
	margin: 12px 0 28px;
	color: var(--cst-muted);
}

.cst-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
}

.cst-quote label {
	display: block;
}

.cst-field {
	display: block;
	min-width: 0;
}

.cst-quote label > span {
	display: block;
	margin-bottom: 6px;
	color: var(--cst-ink-soft);
	font-size: 12px;
	font-weight: 800;
}

.cst-quote input:not([type="checkbox"]),
.cst-quote select,
.cst-quote textarea {
	width: 100%;
	min-height: 48px;
	padding: 10px 13px;
	border: 1px solid #aeb9ca;
	border-radius: 10px;
	color: var(--cst-ink);
	background: var(--cst-white);
	font: inherit;
	font-size: 14px;
}

.cst-quote textarea {
	min-height: 112px;
	resize: vertical;
}

.cst-form-wide {
	margin-top: 18px;
}

.cst-consent {
	display: grid !important;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 10px;
	margin-top: 18px;
}

.cst-consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--cst-purple);
}

.cst-consent span {
	margin: 0 !important;
	font-weight: 600 !important;
}

.cst-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.cst-form-status {
	min-height: 24px;
	margin-top: 14px !important;
	color: var(--cst-muted);
	font-size: 13px;
	font-weight: 700;
}

.cst-form-status.is-error {
	color: var(--cst-error);
}

.cst-quote__attached {
	align-self: start;
	padding: 26px;
	border-radius: var(--cst-radius);
	background: var(--cst-surface);
}

.cst-success {
	display: flex;
	min-height: 620px;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	max-width: 850px;
	margin: 0 auto;
	text-align: left;
}

.cst-success__mark {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	margin-bottom: 26px;
	border-radius: 50%;
	color: var(--cst-white);
	background: var(--cst-success);
	font-size: 26px;
	font-weight: 800;
}

.cst-success h3 {
	margin: 10px 0 20px;
}

.cst-success p {
	max-width: 650px;
	margin-bottom: 14px;
	color: var(--cst-ink-soft);
	font-size: 17px;
}

.cst-success .cst-button {
	margin-top: 20px;
}

.cst-noscript {
	margin-top: 16px !important;
	padding: 16px;
	border: 1px solid #f0b7b2;
	border-radius: 10px;
	color: var(--cst-error);
	background: #fff4f2;
}

.cst-final-cta {
	padding: 76px 0;
	color: var(--cst-white);
	background: linear-gradient(115deg, var(--cst-purple-dark), var(--cst-purple) 56%, var(--cst-blue));
}

.cst-final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.cst-final-cta .cst-eyebrow,
.cst-final-cta h2 {
	color: var(--cst-white);
}

.cst-final-cta h2 {
	max-width: 650px;
}

.cst-site :focus-visible {
	outline: 3px solid #b98ad7;
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.cst-hero__grid {
		grid-template-columns: 1fr 1fr;
	}

	.cst-hero__media,
	.cst-hero__media img {
		min-height: 480px;
	}

	.cst-builder {
		grid-template-columns: minmax(0, 1fr) 280px;
	}

	.cst-builder__steps {
		grid-column: 1 / -1;
		padding: 18px 22px;
	}

	.cst-builder__steps ol {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.cst-step-button {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.cst-step-button__number {
		margin-inline: auto;
	}
}

@media (max-width: 900px) {
	.cst-hero__grid,
	.cst-equipment,
	.cst-section-heading,
	.cst-builder-intro {
		grid-template-columns: 1fr;
	}

	.cst-hero__media,
	.cst-hero__media img {
		min-height: 520px;
	}

	.cst-proof__grid,
	.cst-use-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cst-proof__grid > div:nth-child(2) {
		border-right: 0;
	}

	.cst-proof__grid > div:first-child,
	.cst-proof__grid > div:nth-child(3) {
		padding-left: 0;
	}

	.cst-use-card:not(:nth-child(4n + 1)) {
		padding-left: 0;
		border-left: 0;
	}

	.cst-use-card:nth-child(even) {
		padding-left: 24px;
		border-left: 1px solid var(--cst-line);
	}

	.cst-final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 720px) {
	.cst-shell {
		width: min(100% - 32px, 1180px);
	}

	.cst-hero {
		padding-top: 58px;
	}

	.cst-hero h1 {
		font-size: clamp(42px, 12vw, 58px);
	}

	.cst-hero__media,
	.cst-hero__media img {
		min-height: 390px;
	}

	.cst-proof__grid > div {
		min-height: 150px;
		padding: 28px 18px;
	}

	.cst-proof__grid > div:nth-child(odd) {
		padding-left: 0;
	}

	.cst-proof strong {
		font-size: 27px;
	}

	.cst-section-heading {
		gap: 20px;
	}

	.cst-use-grid,
	.cst-scene-grid {
		grid-template-columns: 1fr;
	}

	.cst-use-card,
	.cst-use-card:nth-child(even) {
		min-height: 0;
		padding: 22px 0;
		border-left: 0;
	}

	.cst-use-card > span {
		margin-bottom: 14px;
	}

	.cst-builder {
		display: block;
		min-height: 0;
		border-radius: 20px;
	}

	.cst-builder__steps {
		overflow-x: auto;
		padding: 14px;
	}

	.cst-builder__steps ol {
		width: max-content;
		grid-template-columns: repeat(6, 118px);
	}

	.cst-step-button {
		padding: 9px 6px;
	}

	.cst-builder__workspace,
	.cst-review,
	.cst-quote,
	.cst-success {
		padding: 28px 20px;
	}

	.cst-builder__summary {
		padding: 28px 20px;
		border-top: 1px solid var(--cst-line);
		border-left: 0;
	}

	.cst-option-grid,
	.cst-quantity-row,
	.cst-form-grid,
	.cst-quote {
		grid-template-columns: 1fr;
	}

	.cst-review-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.cst-review-row .cst-text-link {
		justify-self: start;
	}

	.cst-panel-heading,
	.cst-builder__controls,
	.cst-form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.cst-builder__controls .cst-button,
	.cst-form-actions .cst-button {
		width: 100%;
	}

	.cst-quote__attached {
		grid-row: 1;
	}

	.cst-final-cta {
		padding: 62px 0;
	}

	.cst-final-cta .cst-actions,
	.cst-final-cta .cst-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cst-site *,
	.cst-site *::before,
	.cst-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
