:root {
	--background: #ffffff;
	--surface: #f5f7f8;
	--surface-strong: #eef2f3;
	--text: #20252a;
	--heading: #171b20;
	--muted: #68737b;
	--line: #dce2e5;
	--primary: #a42662;
	--primary-dark: #83194d;
	--teal: #6f8d8e;
	--teal-dark: #4f7173;
	--navy: #26394c;
	--white: #ffffff;
	--shadow: 0 18px 50px rgba(25, 37, 45, .10);
	--shadow-soft: 0 9px 28px rgba(25, 37, 45, .07);
	--radius: 18px;
	--container: 1220px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 82px;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--text);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto;
}

.section {
	padding: 92px 0;
}

.section-soft {
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--heading);
	font-weight: 700;
	letter-spacing: -.03em;
}

h1 {
	margin-bottom: 26px;
	font-size: clamp(3rem, 5vw, 5.1rem);
	line-height: .99;
}

h1 span {
	color: var(--teal-dark);
}

h2 {
	max-width: 820px;
	margin-bottom: 20px;
	font-size: clamp(2.15rem, 3.7vw, 3.7rem);
	line-height: 1.08;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
	line-height: 1.25;
}

.eyebrow {
	margin-bottom: 17px;
	color: var(--primary);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.section-intro {
	max-width: 760px;
	margin-bottom: 42px;
	color: var(--muted);
	font-size: 1.08rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 28px;
}

.brand {
	flex: 0 0 auto;
}

.brand img {
	width: 252px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: .93rem;
	font-weight: 650;
}

.site-nav > a:not(.button) {
	position: relative;
	color: #3b434a;
}

.site-nav > a:not(.button)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -9px;
	width: 100%;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .22s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav .nav-login {
	padding-left: 17px;
	border-left: 1px solid var(--line);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--heading);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-size: .95rem;
	font-weight: 750;
	line-height: 1;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 12px 26px rgba(164, 38, 98, .20);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--primary-dark);
	box-shadow: 0 15px 32px rgba(164, 38, 98, .25);
}

.button-secondary {
	background: var(--white);
	color: var(--heading);
	border-color: #bdc8cd;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: var(--surface);
}

.button-small {
	min-height: 42px;
	padding: 0 18px;
}

.hero {
	padding-top: 84px;
	padding-bottom: 78px;
	background:
		radial-gradient(circle at 76% 15%, rgba(111, 141, 142, .12), transparent 26%),
		linear-gradient(#fff, #fff);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: center;
	gap: 58px;
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.hero-lead {
	max-width: 620px;
	margin-bottom: 32px;
	color: var(--muted);
	font-size: 1.15rem;
	line-height: 1.75;
}

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

.hero-actions .button span {
	margin-left: 12px;
	font-size: 1.1rem;
}

.hero-login {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: .9rem;
}

.hero-login a,
.text-link {
	color: var(--primary);
	font-weight: 700;
}

.image-frame {
	position: relative;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.image-frame img {
	width: 100%;
	height: auto;
}

.hero-media {
	align-self: center;
}

.image-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 62px 24px 23px;
	background: linear-gradient(to top, rgba(15, 22, 27, .84), transparent);
	color: var(--white);
}

.image-caption span {
	display: block;
	margin-bottom: 3px;
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .16em;
}

.image-caption strong {
	font-size: 1.1rem;
}

.capability-strip {
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.capability-grid > div {
	padding: 25px 18px;
	border-right: 1px solid var(--line);
}

.capability-grid > div:first-child {
	border-left: 1px solid var(--line);
}

.capability-grid strong,
.capability-grid span {
	display: block;
}

.capability-grid strong {
	color: var(--heading);
	font-size: .96rem;
}

.capability-grid span {
	margin-top: 2px;
	color: var(--muted);
	font-size: .78rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.feature-card {
	position: relative;
	min-height: 218px;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
	transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(164, 38, 98, .38);
}

.feature-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 26px;
	background: rgba(164, 38, 98, .10);
	border-radius: 7px;
	color: var(--primary);
	font-size: .72rem;
	font-weight: 800;
}

.feature-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: .93rem;
}

.focus-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	align-items: center;
	gap: 62px;
}

.focus-grid-reverse {
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.focus-copy p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.05rem;
}

.plain-image {
	box-shadow: var(--shadow-soft);
}

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

.check-list li {
	position: relative;
	padding-left: 29px;
	font-weight: 650;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .57em;
	width: 9px;
	height: 9px;
	background: var(--primary);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(164, 38, 98, .10);
}

.application-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 42px;
}

.application-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.application-card img {
	width: 100%;
	height: auto;
	border-bottom: 1px solid var(--line);
}

.application-card > div {
	padding: 29px 30px 31px;
}

.application-card span {
	color: var(--primary);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .15em;
}

.application-card h3 {
	margin-top: 9px;
	font-size: 1.55rem;
}

.application-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.pricing-wrap {
	overflow-x: auto;
	margin-top: 42px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-soft);
}

.pricing-table {
	width: 100%;
	min-width: 850px;
	border-collapse: collapse;
	text-align: center;
}

.pricing-table th,
.pricing-table td {
	padding: 22px 18px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.pricing-table tr > *:last-child {
	border-right: 0;
}

.pricing-table tbody tr:last-child > * {
	border-bottom: 0;
}

.pricing-table thead th {
	background: #f8fafb;
	color: var(--heading);
	font-size: 1.02rem;
}

.pricing-table thead th:first-child,
.pricing-table tbody th {
	width: 18%;
	text-align: left;
}

.pricing-table tbody th {
	background: #fbfcfc;
	color: var(--heading);
	font-size: .91rem;
}

.pricing-table td {
	color: #384149;
	font-weight: 650;
}

.pricing-table .featured-column {
	background: rgba(111, 141, 142, .08);
}

.pricing-table thead .featured-column {
	background: var(--navy);
	color: var(--white);
}

.price-row td {
	color: var(--primary);
	font-size: 1.5rem;
	font-weight: 800;
}

.table-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	height: 40px;
	border: 1px solid #aebbc1;
	border-radius: 6px;
	font-size: .84rem;
	font-weight: 800;
}

.table-button:hover,
.table-button:focus-visible {
	border-color: var(--primary);
	color: var(--primary);
}

.table-button-primary {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.table-button-primary:hover,
.table-button-primary:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
}

.pricing-note {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: .85rem;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 76px;
	align-items: start;
}

.about-copy {
	padding-top: 8px;
	color: var(--muted);
	font-size: 1.05rem;
}

.about-copy p:last-child {
	margin-bottom: 0;
}

.final-cta {
	padding-top: 30px;
}

.final-cta-box {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
	align-items: center;
	gap: 40px;
	overflow: hidden;
	padding: 56px 60px;
	background:
		radial-gradient(circle at 90% 0, rgba(164, 38, 98, .17), transparent 32%),
		linear-gradient(135deg, #f4f7f7, #ffffff);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.final-cta-box h2 {
	font-size: clamp(2rem, 3.3vw, 3.15rem);
}

.final-cta-box p:not(.eyebrow) {
	max-width: 690px;
	margin-bottom: 0;
	color: var(--muted);
}

.final-actions {
	display: grid;
	gap: 12px;
}

.final-actions .text-link {
	padding: 5px;
	text-align: center;
}

.site-footer {
	margin-top: 92px;
	padding: 58px 0 24px;
	background: #f6f8f9;
	border-top: 1px solid var(--line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 50px;
}

.footer-brand img {
	width: 250px;
	height: auto;
}

.footer-brand p {
	max-width: 320px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: .9rem;
}

.footer-grid > div:not(.footer-brand) {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-grid strong {
	margin-bottom: 6px;
	color: var(--heading);
	font-size: .86rem;
}

.footer-grid a {
	color: var(--muted);
	font-size: .88rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
	color: var(--primary);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 44px;
	padding-top: 21px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: .78rem;
}

:focus-visible {
	outline: 3px solid rgba(164, 38, 98, .35);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.site-nav {
		gap: 18px;
	}

	.brand img {
		width: 220px;
	}

	.hero-grid,
	.focus-grid,
	.focus-grid-reverse {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 820px;
	}

	.hero-media {
		max-width: 940px;
	}

	.focus-copy {
		max-width: 850px;
	}

	.focus-grid-reverse .image-frame {
		order: 2;
	}

	.focus-grid-reverse .focus-copy {
		order: 1;
	}
}

@media (max-width: 920px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		left: 20px;
		right: 20px;
		top: 68px;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 14px;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 12px;
		box-shadow: var(--shadow);
	}

	.site-nav.open {
		display: flex;
	}

	.site-nav > a:not(.button) {
		padding: 13px 8px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav > a:not(.button)::after {
		display: none;
	}

	.site-nav .nav-login {
		padding-left: 8px;
		border-left: 0;
	}

	.site-nav .button {
		margin-top: 12px;
	}

	.capability-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.capability-grid > div,
	.capability-grid > div:first-child {
		border-left: 0;
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.capability-grid > div:nth-child(even) {
		border-right: 0;
	}

	.capability-grid > div:last-child {
		grid-column: 1 / -1;
		border-bottom: 0;
	}

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

	.about-grid,
	.final-cta-box {
		grid-template-columns: 1fr;
	}

	.application-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.section {
		padding: 66px 0;
	}

	.header-inner {
		min-height: 66px;
	}

	.brand img {
		width: 190px;
	}

	.hero {
		padding-top: 58px;
	}

	h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	h2 {
		font-size: 2.22rem;
	}

	.hero-grid,
	.focus-grid,
	.focus-grid-reverse {
		gap: 34px;
	}

	.hero-lead {
		font-size: 1rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
	}

	.image-caption {
		padding: 48px 18px 17px;
	}

	.image-caption strong {
		font-size: .92rem;
	}

	.capability-grid {
		grid-template-columns: 1fr;
	}

	.capability-grid > div,
	.capability-grid > div:nth-child(even),
	.capability-grid > div:last-child {
		grid-column: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.capability-grid > div:last-child {
		border-bottom: 0;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		min-height: auto;
	}

	.application-card > div {
		padding: 24px;
	}

	.final-cta-box {
		padding: 38px 25px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-brand,
	.footer-grid > div:last-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
