/* Soft home landing — v3. Modern / SaaS / creative / simple. Brand teal #4f46e5.
   Tighter type, icon-led, less text. */

body.home,
body.home #page,
body.home #content { background: #eef2ff; }

.soft-home {
	--sh-teal: #4f46e5;
	--sh-teal-dark: #4338ca;
	--sh-ink: #11242f;
	--sh-body: #5a6976;
	--sh-line: #e8edf1;
	--sh-tint: #ecf7f3;
	position: relative;
	color: var(--sh-body);
	background: #eef2ff;
	overflow: hidden;
	font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.soft-home__hero-inner,
.soft-home__brands-inner,
.soft-home__section,
.soft-home__cta-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* ---------- Hero ---------- */
.soft-home__hero {
	padding: 44px 0 8px;
}

.soft-home__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
	gap: 52px;
	align-items: center;
}

.soft-home__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 18px;
	padding: 6px 12px 6px 8px;
	border-radius: 999px;
	color: var(--sh-teal-dark);
	background: var(--sh-tint);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.soft-home__eyebrow-ico {
	display: inline-flex;
}

.soft-home__eyebrow-ico svg {
	width: 15px;
	height: 15px;
}

.soft-home__section-kicker,
.soft-home__cta-kicker {
	display: none;
}

.soft-home__section-kicker::before {
	content: '';
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: var(--sh-teal);
}

.soft-home__sr-title {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.soft-home__htitle {
	margin: 0;
	max-width: none;
	white-space: nowrap;
	font-size: clamp(26px, 2.4vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.015em;
	color: var(--sh-ink);
	text-wrap: balance;
}

.soft-home__hword {
	display: inline-block;
	color: var(--sh-teal-dark);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.soft-home h1,
.soft-home h2 {
	margin: 0;
	color: var(--sh-ink);
	font-weight: 700;
	letter-spacing: -0.015em;
	text-wrap: balance;
}


.soft-home h2 {
	max-width: 20ch;
	font-size: clamp(22px, 2.1vw, 29px);
	line-height: 1.16;
}

.soft-home__lead {
	max-width: 440px;
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.62;
	color: #4c5a66;
}

.soft-home__hero-cats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	max-width: 440px;
	margin: 22px 0 0;
}

.soft-home__hero-cat {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 13px;
	border-radius: 12px;
	border: 1px solid var(--sh-line);
	background: #ffffff;
	text-decoration: none;
	transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.soft-home__hero-cat:hover {
	border-color: rgba(79, 70, 229, 0.32);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px -16px rgba(17, 36, 47, 0.3);
}

.soft-home__hero-cat-ico {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--sh-tint);
	color: var(--sh-teal-dark);
}

.soft-home__hero-cat-ico svg { width: 18px; height: 18px; }

.soft-home__hero-cat-label {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--sh-ink);
	line-height: 1.2;
}

.soft-home__actions,
.soft-home__cta-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.soft-home__actions {
	margin-top: 24px;
}

.soft-home__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 11px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.soft-home__button svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
}

.soft-home__button:hover {
	transform: translateY(-1px);
}

.soft-home__button--primary {
	color: #ffffff;
	background: var(--sh-teal);
	box-shadow: 0 10px 22px -12px rgba(79, 70, 229, 0.7);
}

.soft-home__button--primary:hover {
	color: #ffffff;
	background: var(--sh-teal-dark);
}

.soft-home__button--ghost {
	color: #ffffff;
	background: var(--sh-ink);
	border: 1px solid var(--sh-ink);
}

.soft-home__button--ghost:hover {
	color: #ffffff;
	background: #0a141d;
	border-color: #0a141d;
}

/* trust chips */
.soft-home__trust {
	display: flex;
	max-width: 440px;
	margin: 30px 0 0;
	padding: 0;
	border: 1px solid rgba(79, 70, 229, 0.16);
	border-radius: 14px;
	background: #e0e7ff;
	overflow: hidden;
	list-style: none;
}

.soft-home__trust-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 14px 8px;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	color: #143b31;
}

.soft-home__trust-item + .soft-home__trust-item {
	border-left: 1px solid rgba(79, 70, 229, 0.16);
}

.soft-home__trust-ico {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--sh-teal-dark);
}

.soft-home__trust-ico svg { width: 20px; height: 20px; }

/* ---------- Hero mockup ---------- */
.soft-home__hero-panel {
	position: relative;
}

.soft-home__mockup-window {
	position: relative;
	padding: 14px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid var(--sh-line);
	box-shadow: 0 28px 56px -34px rgba(17, 36, 47, 0.3);
}

.soft-home__mockup-topbar {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 14px;
}

.soft-home__mockup-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
}

.soft-home__mockup-dot--red { background: #f87171; }
.soft-home__mockup-dot--yellow { background: #fbbf24; }
.soft-home__mockup-dot--green { background: #818cf8; }

.soft-home__mockup-chip {
	margin-left: auto;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: var(--sh-teal-dark);
	background: var(--sh-tint);
}

.soft-home__mockup-canvas {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 12px;
}

.soft-home__mockup-nav {
	display: grid;
	align-content: start;
	gap: 4px;
	padding: 8px;
	border-radius: 13px;
	background: #f6faf9;
	border: 1px solid var(--sh-line);
}

.soft-home__mockup-nav span {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 9px;
	border-radius: 9px;
	font-size: 11.5px;
	font-weight: 500;
	color: #6b7a86;
}

.soft-home__mockup-nav span svg { width: 14px; height: 14px; opacity: 0.8; }

.soft-home__mockup-nav .is-active {
	color: var(--sh-teal-dark);
	background: var(--sh-tint);
	font-weight: 600;
}

.soft-home__mockup-screen {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 14px;
	border-radius: 15px;
	background: #fbfdfc;
	border: 1px solid var(--sh-line);
}

.soft-home__mockup-screen-card {
	padding: 14px;
	border-radius: 13px;
	background: #ffffff;
	border: 1px solid var(--sh-line);
}

.soft-home__mockup-screen-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.32;
	color: var(--sh-ink);
}

.soft-home__mockup-screen-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 9px;
	color: var(--sh-teal-dark);
	font-size: 11px;
	font-weight: 600;
}

.soft-home__mockup-screen-tag svg { width: 13px; height: 13px; }

.soft-home__mockup-screen-list {
	display: grid;
	gap: 2px;
}

.soft-home__mockup-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 2px;
	border-bottom: 1px solid var(--sh-line);
	font-size: 12.5px;
	font-weight: 500;
	color: var(--sh-ink);
}

.soft-home__mockup-row:last-child { border-bottom: 0; }
.soft-home__mockup-row .is-ok { color: var(--sh-teal-dark); font-weight: 600; font-size: 11.5px; }

.soft-home__mockup-badge {
	position: absolute;
	right: 18px;
	bottom: -16px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 13px;
	border-radius: 12px;
	background: #ffffff;
	border: 1px solid var(--sh-line);
	box-shadow: 0 16px 34px -18px rgba(17, 36, 47, 0.4);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--sh-ink);
}

.soft-home__mockup-badge-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 7px;
	color: #fff;
	background: var(--sh-teal);
}

.soft-home__mockup-badge-ico svg { width: 14px; height: 14px; }

/* ---------- Hero slider ---------- */
.soft-home__slider {
	position: relative;
}

.soft-home__slider-frame {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: var(--sh-tint);
	border: 1px solid var(--sh-line);
	box-shadow: 0 12px 26px -22px rgba(17, 36, 47, 0.2);
}

.soft-home__slider-track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.soft-home__slide {
	position: relative;
	flex: 0 0 100%;
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--sh-tint);
	text-decoration: none;
	overflow: hidden;
}

.soft-home__slide-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.soft-home__slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 22, 28, 0.86) 0%, rgba(8, 22, 28, 0.4) 36%, rgba(8, 22, 28, 0) 62%);
}

.soft-home__slide-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 22px 22px;
}

.soft-home__slide-cat {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #a5b4fc;
}

.soft-home__slide-title {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: #ffffff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.soft-home__slide-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 3px;
	font-size: 13px;
	font-weight: 600;
	color: #eef2ff;
}

.soft-home__slide-cta svg { width: 15px; height: 15px; }

.soft-home__slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--sh-ink);
	cursor: pointer;
	box-shadow: 0 8px 20px -8px rgba(8, 22, 28, 0.55);
	transition: background 0.18s ease, transform 0.18s ease;
}

.soft-home__slider-arrow:hover { background: #ffffff; }
.soft-home__slider-arrow svg { width: 19px; height: 19px; }
.soft-home__slider-arrow--prev { left: 12px; }
.soft-home__slider-arrow--next { right: 12px; }
.soft-home__slider-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.soft-home__slider-arrow--next:hover { transform: translateY(-50%) translateX(2px); }

.soft-home__slider-dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 14px;
}

.soft-home__slider-dot {
	position: relative;
	width: 7px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: #cfd8de;
	cursor: pointer;
	overflow: hidden;
	transition: width 0.22s ease, background 0.22s ease;
}

.soft-home__slider-dot.is-active {
	width: 28px;
	background: color-mix(in srgb, var(--active-cs, #4f46e5) 22%, transparent);
}

.soft-home__slider-dot.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: var(--active-cs, #4f46e5);
	animation: sh-dotfill 4500ms linear forwards;
}

.soft-home__slider:hover .soft-home__slider-dot.is-active::after {
	animation-play-state: paused;
}

@keyframes sh-dotfill {
	to { width: 100%; }
}

/* category slides */
.soft-home__cslide {
	--cs: #4f46e5;
	--cs-d: #4338ca;
	--cs-b1: #f6fbf8;
	--cs-b2: #e6f3ee;
	--cs-b3: #d6ede3;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 16 / 9;
	background: linear-gradient(140deg, var(--cs-b1) 0%, var(--cs-b2) 52%, var(--cs-b3) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.soft-home__cslide--cube   { --cs: #5b54d6; --cs-d: #433dba; --cs-b1: #f4f3fd; --cs-b2: #e7e4f8; --cs-b3: #dad7f4; }
.soft-home__cslide--video  { --cs: #e0602f; --cs-d: #b8481d; --cs-b1: #fef4ef; --cs-b2: #fbe2d6; --cs-b3: #f7d4c3; }
.soft-home__cslide--design { --cs: #d4537e; --cs-d: #ad3a62; --cs-b1: #fdf0f4; --cs-b2: #f8dde7; --cs-b3: #f3ccda; }
.soft-home__cslide--photo  { --cs: #c2871a; --cs-d: #94660c; --cs-b1: #fdf7e9; --cs-b2: #f7ecd0; --cs-b3: #f1e0bb; }
.soft-home__cslide--plugin { --cs: #2f7fd6; --cs-d: #4f46e5; --cs-b1: #eff5fd; --cs-b2: #e0e7ff; --cs-b3: #c9def4; }
.soft-home__cslide--dev    { --cs: #4f46e5; --cs-d: #3730a3; --cs-b1: #ecf8fb; --cs-b2: #d6eff5; --cs-b3: #c7d2fe; }
.soft-home__cslide--box    { --cs: #7c4fd0; --cs-d: #5e37ad; --cs-b1: #f5f0fd; --cs-b2: #e7ddf8; --cs-b3: #dccff4; }

.soft-home__cdeco,
.soft-home__cslide-wave,
.soft-home__cslide-grid { color: var(--cs-d); }

.soft-home__slide.is-active .soft-home__cslide-body {
	animation: sh-rise 0.5s ease both;
}

@keyframes sh-rise {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.soft-home__cslide-grid {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(currentColor 1.4px, transparent 1.5px);
	background-size: 16px 16px;
	opacity: 0.13;
	-webkit-mask-image: radial-gradient(135% 130% at 92% 8%, #000 42%, transparent 88%);
	mask-image: radial-gradient(135% 130% at 92% 8%, #000 42%, transparent 88%);
	pointer-events: none;
}

.soft-home__cslide-shapes {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	color: var(--cs);
}

.soft-home__cs-ring,
.soft-home__cs-dot,
.soft-home__cs-sq,
.soft-home__cs-tri {
	position: absolute;
	animation: sh-drift 7s ease-in-out infinite;
}

.soft-home__cs-ring {
	border-radius: 50%;
	border: 2px solid currentColor;
	opacity: 0.16;
}

.soft-home__cs-dot {
	border-radius: 50%;
	background: currentColor;
	opacity: 0.26;
}

.soft-home__cs-sq {
	border: 2px solid currentColor;
	border-radius: 5px;
	opacity: 0.16;
}

.soft-home__cs-tri {
	background: currentColor;
	opacity: 0.15;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@keyframes sh-drift {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.soft-home__cslide-blob {
	position: absolute;
	top: -42px;
	right: -42px;
	width: 188px;
	height: 188px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, rgba(99, 102, 241, 0.4), rgba(79, 70, 229, 0.16) 60%, transparent 72%);
	filter: blur(6px);
	pointer-events: none;
	animation: sh-blob 6s ease-in-out infinite;
}

.soft-home__cslide-art {
	position: absolute;
	top: 18px;
	right: 20px;
	color: rgba(79, 70, 229, 0.34);
	pointer-events: none;
	animation: sh-float 5.5s ease-in-out infinite;
}

.soft-home__cslide-art svg { width: 150px; height: 150px; overflow: visible; }

.soft-home__cslide-art .sh-eq {
	transform-box: fill-box;
	transform-origin: 50% 100%;
	animation: sh-eq 1.15s ease-in-out infinite;
}

.soft-home__cslide-art .sh-eq:nth-child(1) { animation-delay: 0s; }
.soft-home__cslide-art .sh-eq:nth-child(2) { animation-delay: 0.18s; }
.soft-home__cslide-art .sh-eq:nth-child(3) { animation-delay: 0.36s; }
.soft-home__cslide-art .sh-eq:nth-child(4) { animation-delay: 0.12s; }
.soft-home__cslide-art .sh-eq:nth-child(5) { animation-delay: 0.28s; }

/* floating keyword chips */
.soft-home__cslide-chips {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.soft-home__cslide-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px 6px 10px;
	border-radius: 999px;
	background: transparent;
	border: 1.5px solid color-mix(in srgb, var(--cs) 42%, transparent);
	font-size: 12px;
	font-weight: 600;
	color: var(--cs-d);
	white-space: nowrap;
	animation: sh-chip 4.6s ease-in-out infinite;
}

.soft-home__cslide-chip-ico {
	display: inline-flex;
	flex: 0 0 auto;
}

.soft-home__cslide-chip-ico svg { width: 13px; height: 13px; }

.soft-home__cslide-chip:nth-child(1) { animation-delay: 0s; }
.soft-home__cslide-chip:nth-child(2) { animation-delay: 0.7s; }
.soft-home__cslide-chip:nth-child(3) { animation-delay: 1.5s; }

/* animated equalizer waveform (bottom-right) */
.soft-home__cslide-wave {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 5px;
	width: 56%;
	height: 92px;
	padding: 0 26px 24px 0;
	color: var(--cs-d);
	opacity: 0.5;
	pointer-events: none;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
}

.soft-home__cslide-bar {
	flex: 0 0 5px;
	width: 5px;
	height: 60%;
	border-radius: 3px;
	background: currentColor;
	transform-origin: 50% 100%;
	animation: sh-bar 1.1s ease-in-out infinite;
}

@keyframes sh-bar {
	0%, 100% { transform: scaleY(0.32); }
	50% { transform: scaleY(1); }
}

/* per-category bottom decoration */
.soft-home__cdeco {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	color: rgba(79, 70, 229, 0.4);
	pointer-events: none;
}

.soft-home__cdeco--orbit {
	width: 130px;
	height: 130px;
	right: 24px;
	bottom: 18px;
}

.soft-home__cdeco--orbit svg { width: 100%; height: 100%; }

.soft-home__orb {
	transform-box: view-box;
	transform-origin: 55px 55px;
	animation-name: sh-orbit;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes sh-orbit {
	to { transform: rotate(360deg); }
}

.soft-home__cdeco--timeline {
	width: 152px;
	height: 84px;
	right: 24px;
	bottom: 22px;
}

.soft-home__tl-track {
	position: absolute;
	left: 0;
	width: 100%;
	height: 26px;
}

.soft-home__tl-track:nth-child(1) { top: 6px; }
.soft-home__tl-track:nth-child(2) { top: 40px; }

.soft-home__tl-clip {
	position: absolute;
	height: 100%;
	border-radius: 5px;
	background: currentColor;
	opacity: 0.5;
}

.soft-home__tl-clip--faint { opacity: 0.26; }
.soft-home__tl-clip--alt { opacity: 0.5; }

.soft-home__tl-head {
	position: absolute;
	top: 0;
	left: 6px;
	width: 2px;
	height: 74px;
	background: currentColor;
	animation: sh-tl-play 3s linear infinite;
}

.soft-home__cdeco--stack {
	width: 152px;
	height: 122px;
	right: 26px;
	bottom: 20px;
}

.soft-home__layer {
	position: absolute;
	right: 0;
	width: 118px;
	height: 34px;
	border-radius: 10px;
	border: 2px solid currentColor;
	background: color-mix(in srgb, currentColor 9%, transparent);
	animation: sh-stack 3.2s ease-in-out infinite;
}

.soft-home__layer:nth-child(1) { bottom: 2px;  right: 0;    animation-delay: 0s; }
.soft-home__layer:nth-child(2) { bottom: 26px; right: 16px; animation-delay: 0.3s; }
.soft-home__layer:nth-child(3) { bottom: 50px; right: 32px; animation-delay: 0.6s; }

@keyframes sh-tl-play {
	0% { transform: translateX(0); }
	100% { transform: translateX(140px); }
}

@keyframes sh-stack {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

@keyframes sh-eq {
	0%, 100% { transform: scaleY(0.4); }
	50% { transform: scaleY(1); }
}

/* design (transform handles), photography (autofocus), plugins (node graph) */
.soft-home__cdeco--xform { width: 104px; height: 84px; right: 30px; bottom: 26px; }

.soft-home__xf-box {
	position: absolute;
	inset: 0;
	animation: sh-xform 3.4s ease-in-out infinite;
}

.soft-home__xf-shape {
	position: absolute;
	inset: 10px;
	border-radius: 8px;
	background: color-mix(in srgb, currentColor 16%, transparent);
	border: 2px solid currentColor;
}

.soft-home__xf-h {
	position: absolute;
	width: 9px;
	height: 9px;
	background: #fff;
	border: 2px solid currentColor;
	border-radius: 2px;
}

.soft-home__xf-h--tl { left: 4px;  top: 4px; }
.soft-home__xf-h--tr { right: 4px; top: 4px; }
.soft-home__xf-h--bl { left: 4px;  bottom: 4px; }
.soft-home__xf-h--br { right: 4px; bottom: 4px; }
.soft-home__xf-h--tm { left: 50%; top: 4px;    transform: translateX(-50%); }
.soft-home__xf-h--bm { left: 50%; bottom: 4px; transform: translateX(-50%); }

@keyframes sh-xform {
	0%, 100% { transform: rotate(-3deg) scale(0.94); }
	50% { transform: rotate(3deg) scale(1.06); }
}

.soft-home__cdeco--focus { width: 120px; height: 120px; right: 24px; bottom: 18px; }
.soft-home__cdeco--focus svg { width: 100%; height: 100%; }

.soft-home__af {
	transform-box: view-box;
	transform-origin: 55px 55px;
	animation: sh-focus 2.6s ease-in-out infinite;
}

.soft-home__afdot {
	transform-box: view-box;
	transform-origin: 55px 55px;
	animation: sh-afdot 2.6s ease-in-out infinite;
}

.soft-home__cdeco--nodes { width: 154px; height: 110px; right: 14px; bottom: 14px; }
.soft-home__cdeco--nodes svg { width: 100%; height: 100%; }

@keyframes sh-dash { to { stroke-dashoffset: -48; } }

@keyframes sh-focus {
	0%, 100% { transform: scale(1.14); }
	50% { transform: scale(0.92); }
}

@keyframes sh-afdot {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 1; }
}

/* dev (code typing) */
.soft-home__cdeco--code {
	width: 152px;
	height: 96px;
	right: 18px;
	bottom: 18px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 7px;
}

.soft-home__code-line {
	height: 7px;
	border-radius: 4px;
	background: currentColor;
	opacity: 0.5;
	transform-origin: left center;
	animation: sh-type 4.2s ease-in-out infinite;
}

.soft-home__code-line:nth-child(1) { animation-delay: 0s; }
.soft-home__code-line:nth-child(2) { animation-delay: 0.3s; }
.soft-home__code-line:nth-child(3) { animation-delay: 0.6s; }
.soft-home__code-line:nth-child(4) { animation-delay: 0.9s; }

.soft-home__code-last { display: flex; align-items: center; gap: 5px; }

.soft-home__code-bar {
	width: 40px;
	height: 7px;
	border-radius: 4px;
	background: currentColor;
	opacity: 0.5;
}

.soft-home__code-cursor {
	width: 6px;
	height: 13px;
	border-radius: 2px;
	background: currentColor;
	animation: sh-blink 1.05s steps(1) infinite;
}

@keyframes sh-type {
	0% { transform: scaleX(0); }
	14% { transform: scaleX(1); }
	92% { transform: scaleX(1); }
	100% { transform: scaleX(0); }
}

@keyframes sh-blink {
	0%, 50% { opacity: 1; }
	50.01%, 100% { opacity: 0; }
}

/* two-tone accents inside motifs (brighter --cs over darker --cs-d) */
.soft-home__cslide-bar:nth-child(3n) { color: var(--cs); }
.soft-home__code-line:nth-child(even) { color: var(--cs); }
.soft-home__tl-clip--alt { color: var(--cs); opacity: 0.6; }
.soft-home__layer:nth-child(2) { color: var(--cs); }
.soft-home__xf-h { color: var(--cs); }
.soft-home__afdot { fill: var(--cs); }

@keyframes sh-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-9px) rotate(-2deg); }
}

@keyframes sh-chip {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

@keyframes sh-blob {
	0%, 100% { transform: scale(1); opacity: 0.9; }
	50% { transform: scale(1.12); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.soft-home__cslide-art,
	.soft-home__cslide-chip,
	.soft-home__cslide-blob {
		animation: none !important;
	}
}

.soft-home__cslide-body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
	padding: 28px 28px 30px;
}

.soft-home__cslide-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 15px;
	color: #fff;
	background: linear-gradient(145deg, var(--cs) 0%, var(--cs-d) 100%);
	box-shadow: 0 14px 28px -12px rgba(17, 36, 47, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.soft-home__cslide-icon svg { width: 28px; height: 28px; }

.soft-home__cslide-title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--sh-ink);
}

.soft-home__cslide-text {
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--sh-body);
	max-width: 26ch;
}

.soft-home__cslide-cta {
	margin-top: 6px;
	color: var(--cs-d);
}

/* ---------- Brand strip ---------- */
.soft-home__brands {
	margin-top: 52px;
}

.soft-home__brands-inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
}

.soft-home__brands-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--sh-line);
	box-shadow: 0 6px 16px -8px rgba(17, 36, 47, 0.3);
	color: var(--sh-teal-dark);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.soft-home__brands-nav:hover { background: var(--sh-tint); }
.soft-home__brands-nav svg { width: 20px; height: 20px; }
.soft-home__brands-nav { display: none !important; }


.soft-home__brands-label {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 30px;
	padding: 0 24px 0 13px;
	background: rgba(79, 70, 229, 0.12);
	color: var(--sh-teal-dark);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	-webkit-clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%);
	clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%);
}

.soft-home__brands-label-txt { line-height: 1; }

.soft-home__brands-label-ico {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: var(--sh-teal);
}

.soft-home__brands-row {
	display: flex;
	align-items: center;
	gap: 34px;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	overscroll-behavior-x: contain;
	background: transparent;
	border: 0;
	padding: 16px 0;
}

.soft-home__brands-row::-webkit-scrollbar { display: none; }

.soft-home__brands-row {
	flex: 1;
	min-width: 0;
	-webkit-mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
}

.soft-home__brands-row { cursor: grab; -webkit-user-select: none; user-select: none; scroll-behavior: smooth; touch-action: pan-x; }
.soft-home__brands-row.is-grabbing { cursor: grabbing; scroll-behavior: auto; }
.soft-home__brands-row .soft-home__brand { user-select: none; -webkit-user-drag: none; }
.soft-home__brands-row .soft-home__brand-mark { pointer-events: none; }

.soft-home__brand {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.soft-home__brand-mark {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
}

.soft-home__brands-count {
	flex: 0 0 auto;
	margin-left: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--sh-teal-dark);
	background: var(--sh-tint);
	border-radius: 999px;
	padding: 7px 14px;
	white-space: nowrap;
}

/* ---------- Sections ---------- */
.soft-home__section {
	padding-top: 64px;
}

.soft-home__section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.soft-home__h2row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.soft-home__section-ico {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--sh-tint);
	color: var(--sh-teal-dark);
}

.soft-home__section-ico svg { width: 21px; height: 21px; }

.soft-home__section-ico--hot {
	background: #fdeee8;
	color: #e2491c;
}

/* stats band */
.soft-home__stats-band {
	display: flex;
	background: #e0e7ff;
	border: 1px solid rgba(79, 70, 229, 0.16);
	border-radius: 18px;
	overflow: hidden;
}

.soft-home__stat-col {
	flex: 1;
	text-align: center;
	padding: 30px 16px;
}

.soft-home__stat-col + .soft-home__stat-col {
	border-left: 1px solid rgba(79, 70, 229, 0.14);
}

.soft-home__stat-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #ffffff;
	color: var(--sh-teal-dark);
	margin-bottom: 13px;
}

.soft-home__stat-ico svg { width: 21px; height: 21px; }

.soft-home__stat-num {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--sh-teal-dark);
}

.soft-home__stat-lab {
	margin-top: 8px;
	font-size: 13.5px;
	color: #3730a3;
}

@media (max-width: 600px) {
	.soft-home__stats-band { flex-wrap: wrap; }
	.soft-home__stat-col { flex: 1 1 50%; }
	.soft-home__stat-col:nth-child(3) { border-left: 0; }
	.soft-home__stat-col:nth-child(n+3) { border-top: 1px solid var(--sh-line); }
}

.soft-home__section-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--sh-teal-dark);
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 600;
	white-space: nowrap;
}

.soft-home__section-link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.soft-home__section-link:hover svg { transform: translateX(2px); }

/* ---------- Category grid ---------- */
.soft-home__category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.soft-home__category {
	position: relative;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px;
	border-radius: 15px;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid var(--sh-line);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.soft-home__category:hover {
	transform: translateY(-2px);
	border-color: rgba(79, 70, 229, 0.28);
	box-shadow: 0 16px 32px -22px rgba(17, 36, 47, 0.24);
}

.soft-home__category-icon,
.soft-home__feature-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: var(--fc, var(--sh-teal-dark));
	background: var(--fcb, var(--sh-tint));
}

.soft-home__category-icon svg,
.soft-home__feature-icon svg { width: 22px; height: 22px; }

.soft-home__category-copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.soft-home__category-title {
	color: var(--sh-ink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
}

.soft-home__category-text {
	font-size: 12.5px;
	line-height: 1.4;
	color: var(--sh-body);
}

.soft-home__category-arrow {
	margin-left: auto;
	display: inline-flex;
	color: #c2ccd4;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.soft-home__category-arrow svg { width: 18px; height: 18px; }

.soft-home__category:hover .soft-home__category-arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--sh-teal);
}

/* ---------- Feature grid ---------- */
.soft-home__feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.soft-home__feature {
	position: relative;
	padding: 28px 20px 24px;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid var(--sh-line);
	text-align: center;
	overflow: hidden;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.soft-home__feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--fc, var(--sh-teal));
	opacity: 0.85;
}

.soft-home__feature:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px -24px rgba(17, 36, 47, 0.22);
}

.soft-home__feature:nth-child(1) { --fc: #4338ca; --fcb: #e0e7ff; }
.soft-home__feature:nth-child(2) { --fc: #bd8210; --fcb: #f7ecd0; }
.soft-home__feature:nth-child(3) { --fc: #b8481d; --fcb: #fbe2d6; }
.soft-home__feature:nth-child(4) { --fc: #4f46e5; --fcb: #e0e7ff; }

.soft-home__feature-icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	margin-bottom: 13px;
	background: var(--fcb, var(--sh-tint));
	color: var(--fc, var(--sh-teal-dark));
}

.soft-home__feature-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--sh-ink);
}

.soft-home__feature p {
	margin: 6px 0 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--sh-body);
}

/* ---------- Category color tiles ---------- */
.soft-home__cat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.soft-home__cattile {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	min-height: 140px;
	padding: 18px;
	border-radius: 16px;
	background: var(--ctb);
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.soft-home__cattile-pattern {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 54px;
	height: 54px;
	color: var(--ct);
	opacity: 0.12;
	pointer-events: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.soft-home__cattile-pattern svg { width: 100%; height: 100%; }

.soft-home__cattile:hover .soft-home__cattile-pattern {
	transform: scale(1.08) rotate(-3deg);
	opacity: 0.2;
}

.soft-home__cattile-ico,
.soft-home__cattile-body { position: relative; z-index: 1; }

.soft-home__cattile-arrow {
	position: absolute;
	bottom: 16px;
	right: 16px;
	display: inline-flex;
	color: var(--ct);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 1;
}

.soft-home__cattile-arrow svg { width: 20px; height: 20px; }

.soft-home__cattile:hover .soft-home__cattile-arrow {
	opacity: 1;
	transform: translateX(0);
}

.soft-home__cattile:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 32px -18px color-mix(in srgb, var(--ct) 55%, transparent);
}

.soft-home__cattile-ico {
	display: inline-flex;
	color: var(--ct);
}

.soft-home__cattile-ico svg { width: 30px; height: 30px; }

.soft-home__cattile-body { display: flex; flex-direction: column; gap: 3px; }

.soft-home__cattile-title {
	font-size: 16.5px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ct);
}

.soft-home__cattile-text {
	font-size: 12.5px;
	font-weight: 500;
	color: color-mix(in srgb, var(--ct) 58%, #44525d);
}

.soft-home__cattile--audio  { --ct: #4338ca; --ctb: #e0e7ff; }
.soft-home__cattile--cube   { --ct: #433dba; --ctb: #e7e4f8; }
.soft-home__cattile--video  { --ct: #b8481d; --ctb: #fbe2d6; }
.soft-home__cattile--design { --ct: #ad3a62; --ctb: #f8dde7; }
.soft-home__cattile--photo  { --ct: #94660c; --ctb: #f7ecd0; }
.soft-home__cattile--plugin { --ct: #4f46e5; --ctb: #e0e7ff; }
.soft-home__cattile--dev    { --ct: #3730a3; --ctb: #d6eff5; }
.soft-home__cattile--box    { --ct: #5e37ad; --ctb: #e7ddf8; }

@media (max-width: 1040px) {
	.soft-home__cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 460px) {
	.soft-home__cat-grid { grid-template-columns: 1fr; }
}

/* ---------- Products ---------- */
.soft-home__product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.soft-home__product {
	display: flex;
	flex-direction: column;
	border-radius: 15px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--sh-line);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.soft-home__product:hover {
	transform: translateY(-3px);
	border-color: rgba(79, 70, 229, 0.24);
	box-shadow: 0 20px 40px -24px rgba(17, 36, 47, 0.26);
}

.soft-home__product-thumb {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	background: #f6f7fb;
	padding: 14px;
	text-decoration: none;
	overflow: hidden;
}

.soft-home__product-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.soft-home__product:hover .soft-home__product-thumb img { transform: scale(1.04); }

.soft-home__product-meta {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	gap: 6px;
	min-height: 23px;
	margin: 0 0 12px;
}
.soft-home__product-meta-ico { display: inline-flex; color: #4f46e5; flex: 0 0 auto; }
.soft-home__product-meta-ico svg { width: 14px; height: 14px; }
.soft-home__product-chip {
	display: inline-flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	max-width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 2px 8px;
	border-radius: 6px;
	background: transparent;
	border: 1px solid rgba(79, 70, 229, 0.4);
	color: #4338ca;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.5;
}
.soft-home__product-chip--more { flex: 0 0 auto; background: transparent; border-color: rgba(0, 0, 0, 0.14); color: #6b7670; }

.soft-home__product-hot {
	/* bookmark / ribbon hanging from the top edge (icon-only; the "Hot" text node is
	   collapsed via font-size:0 but kept in the DOM for screen readers). */
	position: absolute;
	top: 0;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 42px;
	padding: 0;
	gap: 0;
	font-size: 0;
	border-radius: 0;
	background: linear-gradient(180deg, #ff7a3c, #e8330f);
	color: #fff;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
	box-shadow: 0 4px 9px -3px rgba(0, 0, 0, 0.45);
	transition: background 0.2s ease;
}

.soft-home__product:hover .soft-home__product-hot { background: linear-gradient(180deg, #6366f1, #4338ca); }

.soft-home__product-hot svg { width: 15px; height: 15px; margin-top: -4px; }

/* Featured badge variant: teal by default, swaps to warm on hover (mirror of HOT). */
.soft-home__product-hot--feat { background: linear-gradient(180deg, #6366f1, #4338ca); }
.soft-home__product:hover .soft-home__product-hot--feat { background: linear-gradient(180deg, #ff7a3c, #e8330f); }

.soft-home__section-kicker--hot { color: #e2491c; }
.soft-home__section-kicker--hot::before { display: none; }
.soft-home__section-kicker--hot svg { width: 15px; height: 15px; }

.soft-home__product-thumb-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--sh-teal);
	opacity: 0.5;
}

.soft-home__product-thumb-fallback svg { width: 34px; height: 34px; }

.soft-home__product-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 5px;
	padding: 13px 14px 15px;
}

.soft-home__product-cat {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--sh-teal);
}

.soft-home__product-title {
	margin: 0;
	min-height: 2.7em;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.soft-home__product-title a {
	color: var(--sh-ink);
	text-decoration: none;
}

.soft-home__product-title a:hover { color: var(--sh-teal-dark); }

.soft-home__product-price {
	margin-top: auto;
	display: flex;
	flex-direction: row;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 2px 6px;
}

.soft-home__product-price-label {
	font-size: 11px;
	font-weight: 500;
	color: #8a97a3;
}

.soft-home__product-price-label::after { content: ':'; }

.soft-home__product-price-val {
	font-size: 15px;
	font-weight: 700;
	color: var(--sh-teal-dark);
	letter-spacing: -0.01em;
}

.soft-home__product-price del {
	margin-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: #9aa7b2;
}

.soft-home__product-price ins { text-decoration: none; }

.soft-home__product-price--ask {
	font-size: 13px;
	font-weight: 600;
	color: var(--sh-teal-dark);
}

.soft-home__empty {
	grid-column: 1 / -1;
	padding: 26px;
	border-radius: 15px;
	background: #ffffff;
	border: 1px dashed var(--sh-line);
	text-align: center;
	font-size: 14px;
	color: var(--sh-body);
}

/* ---------- CTA band ---------- */
.soft-home__cta {
	padding: 72px 0 60px;
}

.soft-home__cta-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	padding: 40px 44px;
	border-radius: 22px;
	background:
		radial-gradient(150px 150px at -24px 100%, transparent 0 96px, rgba(255, 255, 255, 0.16) 96px 99px, transparent 100px),
		linear-gradient(120deg, #4f46e5 0%, #4338ca 100%);
	color: #eef2ff;
	overflow: hidden;
}

.soft-home__cta-inner::before {
	content: '';
	position: absolute;
	top: -28px;
	right: -16px;
	width: 210px;
	height: 210px;
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.6px, transparent 1.8px);
	background-size: 16px 16px;
	-webkit-mask-image: radial-gradient(120% 120% at 100% 0%, #000 28%, transparent 74%);
	mask-image: radial-gradient(120% 120% at 100% 0%, #000 28%, transparent 74%);
	pointer-events: none;
}

.soft-home__cta-inner::after {
	content: '';
	position: absolute;
	right: 56px;
	bottom: -54px;
	width: 168px;
	height: 168px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.16);
	pointer-events: none;
}

.soft-home__cta-stats,
.soft-home__cta-copy,
.soft-home__cta-actions { position: relative; z-index: 1; }

.soft-home__cta-stats {
	align-self: stretch;
	display: flex;
	gap: 0;
	margin-bottom: 4px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.soft-home__cta-stat {
	flex: 1;
	text-align: center;
	padding: 0 14px;
}

.soft-home__cta-stat + .soft-home__cta-stat {
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.soft-home__cta-stat-num {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	color: #ffffff;
}

.soft-home__cta-stat-lab {
	margin-top: 7px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
}

.soft-home__cta-kicker { color: #c7d2fe; }
.soft-home__cta-kicker::before { display: none; }

.soft-home__cta-copy { text-align: center; }
.soft-home__cta h2 { color: #ffffff; max-width: none; }

.soft-home__cta-inner p {
	max-width: 620px;
	margin: 10px auto 0;
	font-size: 15px;
	line-height: 1.55;
	color: #e0e7ff;
	text-wrap: balance;
}

.soft-home__cta-actions { flex: 0 0 auto; }

.soft-home__button--light {
	color: var(--sh-teal-dark);
	background: #ffffff;
}

.soft-home__button--light:hover { background: #eef2ff; }

.soft-home__button--outline {
	color: #ffffff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.42);
}

.soft-home__button--outline:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
	.soft-home__hero-inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.soft-home__category-grid,
	.soft-home__feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 760px) {
	.soft-home__hero-inner,
	.soft-home__brands-inner,
	.soft-home__section,
	.soft-home__cta-inner {
		padding-left: 18px;
		padding-right: 18px;
	}

	.soft-home__hero { padding-top: 28px; }
	.soft-home__section { padding-top: 52px; }

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

	.soft-home__cta-inner {
		flex-direction: column;
		align-items: center;
		padding: 32px 22px;
	}

	.soft-home__cta-stats { flex-wrap: wrap; }
	.soft-home__cta-stat { flex: 1 1 50%; padding: 12px 8px; }
	.soft-home__cta-stat:nth-child(3) { border-left: 0; }
	.soft-home__cta-stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.16); }

	.soft-home__mockup-badge { right: 8px; }
}

@media (max-width: 440px) {
	.soft-home__category-grid,
	.soft-home__feature-grid,
	.soft-home__product-grid {
		grid-template-columns: 1fr;
	}
}

/* Quote launcher modal (reused from SCI single-product so the CTA can open the báo-giá form on the homepage) */
.csi-quote-launcher-modal[hidden] { display: none !important; }
.csi-quote-launcher-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 99999 !important;
	display: grid !important;
	place-items: center !important;
	padding: 24px 14px !important;
}
.csi-quote-launcher-backdrop {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(15, 23, 42, .48) !important;
}
.csi-quote-launcher-panel {
	position: relative !important;
	z-index: 1 !important;
	width: min(720px, 100%) !important;
	max-height: calc(100vh - 48px) !important;
	overflow: auto !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}
.csi-quote-launcher-close {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	z-index: 3 !important;
	width: 34px !important;
	height: 34px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 0 !important;
	background: transparent !important;
	color: #334155 !important;
	font-size: 26px !important;
	line-height: 1 !important;
	cursor: pointer !important;
}
.csi-quote-launcher-close:hover { color: #0f172a !important; }
.csi-quote-launcher-body { width: 100% !important; }
html.csi-quote-modal-open, html.csi-quote-modal-open body { overflow: hidden !important; }
.csi-quote-launcher-modal .wpat-form-template--quote,
.csi-quote-launcher-modal .wpat-form,
.csi-quote-launcher-modal form[class*="wpat"] {
	box-shadow: 0 14px 34px rgba(15, 23, 42, .10) !important;
	border-color: rgba(148, 163, 184, .26) !important;
}

/* ===== Mobile: stack the hero, hide the decorative slider panel ===== */
@media (max-width: 900px) {
	.soft-home__hero { padding: 26px 0 4px; }
	.soft-home__hero-inner { grid-template-columns: 1fr !important; gap: 22px !important; }
	.soft-home__hero-panel { display: none !important; }
	.soft-home__trust { max-width: 100% !important; }
}
@media (max-width: 420px) {
	.soft-home__trust-item { font-size: 11px; padding: 12px 5px; gap: 5px; }
	.soft-home__trust-ico svg { width: 17px; height: 17px; }
}

/* Hide the partner logos strip on mobile */
@media (max-width: 768px) { .soft-home__brands { display: none !important; } }

/* Mobile: tidy the section heading row (icon + title + "Tất cả") */
@media (max-width: 600px) {
	.soft-home__section-head { align-items: center; margin-bottom: 16px; gap: 12px; }
	.soft-home__h2row { gap: 10px; }
	.soft-home__section-ico { width: 32px !important; height: 32px !important; }
	.soft-home__section-ico svg { width: 17px; height: 17px; }
	.soft-home h2 { font-size: 20px; }
	.soft-home__section-kicker { display: none; }
	.soft-home__section-link { font-size: 13px; }
}

/* Make the whole home product card clickable (stretched-link via the title anchor) */
.soft-home__product { position: relative; }
.soft-home__product-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.soft-home__product-title a:focus-visible::after { outline: 2px solid #4f46e5; outline-offset: 2px; border-radius: 14px; }
