/* ── Site chrome (sticky nav + footer) ── */
.yps-chrome-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.875rem 0;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.yps-chrome-header.is-scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
	border-bottom-color: var(--yps-border);
}

.yps-chrome-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.yps-logo {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--yps-font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--yps-primary) !important;
}

.yps-logo__mark {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--yps-gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	color: #fff;
	box-shadow: var(--yps-glow);
}

.yps-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.yps-nav__link {
	color: var(--yps-text-muted) !important;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.25s ease;
}

.yps-nav__link:hover,
.yps-nav__link.is-active {
	color: var(--yps-primary) !important;
}

.yps-nav__cta {
	padding: 0.625rem 1.25rem !important;
	font-size: 0.875rem !important;
}

.yps-chrome-footer {
	background: var(--yps-primary);
	color: #94a3b8;
	padding: 3rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.yps-chrome-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.yps-chrome-footer h4 {
	color: #f8fafc;
	font-size: 0.875rem;
	margin: 0 0 1rem;
}

.yps-chrome-footer a {
	color: #94a3b8 !important;
	font-size: 0.875rem;
	display: block;
	margin-bottom: 0.5rem;
}

.yps-chrome-footer a:hover {
	color: #e2e8f0 !important;
}

.yps-chrome-footer__bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.8125rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* ── Hero ── */
.yps-hero {
	position: relative;
	padding-block: clamp(6.5rem, 12vw, 9rem) clamp(3rem, 6vw, 5rem);
	background:
		radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
		linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
	overflow: hidden;
	color: var(--yps-text);
	min-height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.yps-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.35;
	z-index: 0;
}

.yps-float-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.yps-float-bg__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(48px);
	opacity: 0.55;
	animation: yps-float-slow 14s ease-in-out infinite;
}

.yps-float-bg__blob--1 {
	width: 340px;
	height: 340px;
	background: rgba(124, 58, 237, 0.22);
	top: -6%;
	right: 8%;
}

.yps-float-bg__blob--2 {
	width: 280px;
	height: 280px;
	background: rgba(139, 92, 246, 0.18);
	bottom: 12%;
	left: -4%;
	animation-delay: -4s;
}

.yps-float-bg__blob--3 {
	width: 200px;
	height: 200px;
	background: rgba(99, 102, 241, 0.16);
	top: 35%;
	left: 42%;
	animation-delay: -7s;
}

.yps-float-bg__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(124, 58, 237, 0.12);
	animation: yps-float 10s ease-in-out infinite;
}

.yps-float-bg__ring--1 {
	width: 120px;
	height: 120px;
	top: 18%;
	right: 22%;
}

.yps-float-bg__ring--2 {
	width: 80px;
	height: 80px;
	bottom: 28%;
	right: 38%;
	animation-delay: -3s;
}

.yps-float-bg__chip {
	position: absolute;
	padding: 0.5rem 0.875rem;
	border-radius: 999px;
	font-family: var(--yps-font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--yps-accent);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(124, 58, 237, 0.15);
	box-shadow: var(--yps-shadow);
	animation: yps-float 8s ease-in-out infinite;
}

.yps-float-bg__chip--1 { top: 22%; left: 8%; animation-delay: -1s; }
.yps-float-bg__chip--2 { top: 55%; right: 12%; animation-delay: -5s; }
.yps-float-bg__chip--3 { bottom: 18%; left: 28%; animation-delay: -2s; }

.yps-hero__mesh,
.yps-hero__orb {
	display: none;
}

.yps-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	z-index: 2;
}

.yps-hero__title {
	font-size: clamp(2.75rem, 6vw, 4.25rem);
	color: var(--yps-primary);
	margin: 0 0 1.25rem;
	font-weight: 700;
	line-height: 1.05;
}

.yps-hero__title em {
	font-style: normal;
	display: inline;
	background: var(--yps-gradient-text);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: yps-gradient-shift 5s ease infinite;
}

.yps-hero__lead {
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	color: var(--yps-text-muted);
	max-width: 34rem;
	margin: 0 0 2rem;
	line-height: 1.7;
}

.yps-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.yps-hero__visual {
	position: relative;
}

.yps-hero__terminal {
	background: #fff;
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-lg);
	overflow: hidden;
	box-shadow: var(--yps-shadow-lg);
	transform: none;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.yps-hero__visual:hover .yps-hero__terminal {
	transform: translateY(-4px);
	box-shadow: 0 28px 70px rgba(30, 27, 75, 0.12);
}

.yps-hero__terminal-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0.75rem 1rem;
	background: #f8fafc;
	border-bottom: 1px solid var(--yps-border);
}

.yps-hero__terminal-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.yps-hero__terminal-dot--r { background: #f87171; }
.yps-hero__terminal-dot--y { background: #fbbf24; }
.yps-hero__terminal-dot--g { background: #4ade80; }

.yps-hero__terminal-title {
	margin-left: auto;
	font-size: 0.6875rem;
	color: #64748b;
	font-family: ui-monospace, monospace;
}

.yps-hero__code {
	font-family: ui-monospace, "Cascadia Code", "Fira Code", monospace;
	font-size: 0.8125rem;
	line-height: 1.75;
	color: #475569;
	padding: 1.25rem 1.5rem;
	min-height: 200px;
	margin: 0;
	background: #fff;
}

.yps-hero__code .kw { color: #c084fc; }
.yps-hero__code .str { color: #86efac; }
.yps-hero__code .key { color: #67e8f9; }
.yps-hero__code .cursor {
	display: inline-block;
	width: 8px;
	height: 1em;
	background: #22d3ee;
	margin-left: 2px;
	vertical-align: text-bottom;
	animation: yps-blink 1s step-end infinite;
}

.yps-hero__stats {
	position: relative;
	z-index: 2;
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.yps-stat-card {
	text-align: center;
	padding: 1.25rem 1rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius);
	box-shadow: var(--yps-shadow);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.yps-stat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(124, 58, 237, 0.25);
	box-shadow: var(--yps-shadow-lg);
}

.yps-stat-card__num {
	font-family: var(--yps-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--yps-primary);
	line-height: 1;
	margin-bottom: 0.375rem;
}

.yps-stat-card__num em {
	font-style: normal;
	background: var(--yps-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.yps-stat-card__label {
	font-size: 0.8125rem;
	color: var(--yps-text-muted);
}

/* ── Marquee ── */
.yps-marquee {
	padding-block: 1rem;
	background: #fff;
	border-block: 1px solid var(--yps-border);
	overflow: hidden;
}

.yps-marquee__track {
	display: flex;
	width: max-content;
	animation: yps-marquee 40s linear infinite;
}

.yps-marquee__track:hover {
	animation-play-state: paused;
}

.yps-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	margin: 0 0.75rem;
	font-family: var(--yps-font-body);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--yps-accent);
	background: var(--yps-accent-soft);
	border-radius: 999px;
	white-space: nowrap;
}

.yps-marquee__item span {
	opacity: 0.6;
	font-size: 0.625rem;
}

/* ── Buttons ── */
.yps-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9375rem 1.75rem;
	border-radius: 999px;
	font-family: var(--yps-font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	position: relative;
	overflow: hidden;
}

.yps-btn:focus {
	outline: 2px solid var(--yps-accent);
	outline-offset: 3px;
}

.yps-btn--primary {
	background: var(--yps-gradient-brand);
	color: #fff;
	box-shadow: 0 4px 24px rgba(124, 58, 237, 0.45);
}

.yps-btn--primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
	background-size: 200% 100%;
	animation: yps-shimmer 3s ease infinite;
}

.yps-btn--primary:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55);
}

.yps-btn--ghost {
	background: #fff;
	color: var(--yps-primary);
	border: 1px solid var(--yps-border);
}

.yps-btn--ghost:hover {
	border-color: var(--yps-accent);
	color: var(--yps-accent);
	background: var(--yps-accent-soft);
}

.yps-btn--outline {
	background: transparent;
	color: var(--yps-accent);
	border: 2px solid var(--yps-accent);
}

.yps-btn--outline:hover {
	background: var(--yps-accent-soft);
}

/* ── Features bento ── */
.yps-features__head {
	text-align: center;
	max-width: 44rem;
	margin: 0 auto 3.5rem;
}

.yps-features__title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 1rem;
}

.yps-features__sub {
	color: var(--yps-text-muted);
	font-size: 1.0625rem;
	margin: 0;
}

.yps-feature-card {
	position: relative;
	background: var(--yps-surface);
	border-radius: var(--yps-radius-lg);
	padding: 2rem;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.yps-feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 211, 238, 0.15), transparent 60%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.yps-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--yps-shadow-lg);
}

.yps-feature-card--wide {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(34, 211, 238, 0.04) 100%);
}

.yps-feature-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--yps-accent-soft), var(--yps-cyan-soft));
	color: var(--yps-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.yps-feature-card__icon svg {
	width: 24px;
	height: 24px;
}

.yps-feature-card__title {
	font-size: 1.1875rem;
	margin: 0 0 0.625rem;
}

.yps-feature-card__text {
	color: var(--yps-text-muted);
	font-size: 0.9375rem;
	margin: 0 0 1rem;
	line-height: 1.65;
}

.yps-feature-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--yps-accent);
}

.yps-feature-card__link:hover {
	color: var(--yps-accent-hover);
}

.yps-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.yps-features-grid .yps-feature-card {
	border: 1px solid var(--yps-border);
	box-shadow: var(--yps-shadow);
}

/* ── About Console (redesigned) ── */
.yps-about-console-section {
	position: relative;
	overflow: hidden;
	background: var(--yps-background);
}

.yps-about-console-section__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 40%);
	pointer-events: none;
}

.yps-about-console-split {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.yps-about-console-split__copy .yps-features__sub {
	max-width: 34rem;
	margin-bottom: 2rem;
}

.yps-about-console-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.yps-about-console-feature {
	display: flex;
	gap: 0.875rem;
	padding: 1.125rem 1.25rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-lg);
	box-shadow: var(--yps-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.yps-about-console-feature:hover {
	transform: translateY(-3px);
	box-shadow: var(--yps-shadow-lg);
	border-color: rgba(124, 58, 237, 0.22);
}

.yps-about-console-feature__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--yps-cyan-soft), var(--yps-accent-soft));
	color: var(--yps-accent);
}

.yps-about-console-feature__icon svg {
	width: 20px;
	height: 20px;
}

.yps-about-console-feature h3 {
	font-size: 0.9375rem;
	margin: 0 0 0.25rem;
}

.yps-about-console-feature p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--yps-text-muted);
	line-height: 1.5;
}

.yps-about-console-mock {
	position: relative;
}

.yps-about-console-mock__chip {
	position: absolute;
	z-index: 3;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	box-shadow: var(--yps-shadow);
	color: var(--yps-primary);
	animation: yps-float 5s ease-in-out infinite;
}

.yps-about-console-mock__chip--1 { top: -0.5rem; right: 12%; animation-delay: 0s; }
.yps-about-console-mock__chip--2 { bottom: 8%; left: -0.5rem; animation-delay: -2.5s; }

.yps-about-console-app {
	border-radius: var(--yps-radius-xl);
	overflow: hidden;
	background: #0b1020;
	border: 1px solid rgba(148, 163, 184, 0.15);
	box-shadow: 0 28px 70px rgba(30, 27, 75, 0.22), var(--yps-glow-cyan);
}

.yps-about-console-app__titlebar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0.75rem 1rem;
	background: rgba(15, 23, 42, 0.98);
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.yps-about-console-app__titlebar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.yps-about-console-app__titlebar span:nth-child(1) { background: #f87171; }
.yps-about-console-app__titlebar span:nth-child(2) { background: #fbbf24; }
.yps-about-console-app__titlebar span:nth-child(3) { background: #34d399; }

.yps-about-console-app__titlebar em {
	margin-left: auto;
	font-style: normal;
	font-size: 0.6875rem;
	color: #64748b;
	font-family: ui-monospace, monospace;
}

.yps-about-console-app__body {
	display: grid;
	grid-template-columns: 168px 1fr;
	min-height: 340px;
}

.yps-about-console-app__sidebar {
	padding: 1rem 0.75rem;
	background: rgba(15, 23, 42, 0.6);
	border-right: 1px solid rgba(148, 163, 184, 0.08);
}

.yps-about-console-app__sidebar-label {
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #64748b;
	margin: 0 0 0.75rem 0.5rem;
}

.yps-about-console-site {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	padding: 0.625rem 0.5rem;
	border-radius: var(--yps-radius);
	cursor: default;
	transition: background 0.35s ease;
}

.yps-about-console-site.is-active {
	background: rgba(124, 58, 237, 0.15);
}

.yps-about-console-site__dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	margin-top: 0.35rem;
	border-radius: 50%;
	background: #475569;
}

.yps-about-console-site.is-active .yps-about-console-site__dot {
	background: #22c55e;
	box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
}

.yps-about-console-site strong {
	display: block;
	font-size: 0.75rem;
	color: #e2e8f0;
	line-height: 1.3;
	margin-bottom: 0.15rem;
}

.yps-about-console-site span {
	font-size: 0.625rem;
	color: #64748b;
}

.yps-about-console-app__main {
	display: flex;
	flex-direction: column;
	padding: 1rem 1.125rem 1.125rem;
}

.yps-about-console-app__session {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.yps-about-console-app__session-badge {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #c4b5fd;
	padding: 0.3rem 0.625rem;
	border-radius: 999px;
	background: rgba(124, 58, 237, 0.2);
	border: 1px solid rgba(124, 58, 237, 0.3);
}

.yps-about-console-app__session-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: #94a3b8;
}

.yps-about-console-app__pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	animation: yps-pulse-glow 2s ease-in-out infinite;
}

.yps-about-console-app__terminal {
	flex: 1;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.25);
	border-radius: var(--yps-radius);
	border: 1px solid rgba(148, 163, 184, 0.08);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.75rem;
	line-height: 1.65;
	margin-bottom: 1rem;
}

.yps-about-console-app__terminal .yps-console__line--user { color: #e2e8f0; margin-bottom: 0.5rem; }
.yps-about-console-app__terminal .yps-console__line--tool { color: #94a3b8; margin-bottom: 0.35rem; }
.yps-about-console-app__terminal .yps-console__line--ok { color: #86efac; margin-top: 0.5rem; }

.yps-about-console-app__steps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.yps-about-console-app__step {
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.12);
	color: #64748b;
	border: 1px solid transparent;
	transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.yps-about-console-app__step.is-done {
	background: rgba(34, 197, 94, 0.12);
	color: #86efac;
}

.yps-about-console-app__step.is-active {
	background: rgba(124, 58, 237, 0.2);
	color: #c4b5fd;
	border-color: rgba(124, 58, 237, 0.35);
	animation: yps-pulse-glow 2.5s ease-in-out infinite;
}

.yps-console__bar-title {
	margin-left: auto;
	font-size: 0.6875rem;
	color: #64748b;
	font-family: ui-monospace, monospace;
}

/* ── Steps ── */
.yps-step {
	position: relative;
	padding: 2.25rem;
	background: var(--yps-surface);
	border-radius: var(--yps-radius-lg);
	border: 1px solid var(--yps-border);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yps-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--yps-shadow);
}

.yps-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--yps-gradient-brand);
	color: #fff;
	font-family: var(--yps-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.yps-step__title {
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
}

.yps-step__text {
	color: var(--yps-text-muted);
	margin: 0;
}

/* ── How it works — animated process ── */
.yps-how-diagram {
	margin-bottom: 2.75rem;
	padding: 2rem;
	background: linear-gradient(180deg, #fff 0%, rgba(250, 250, 255, 0.9) 100%);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-xl);
	box-shadow: var(--yps-shadow);
}

.yps-how-diagram__flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 1.75rem;
	padding-inline: clamp(0.25rem, 2vw, 1rem);
}

.yps-how-diagram__node {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
	z-index: 1;
	cursor: pointer;
}

.yps-how-diagram__node-ring {
	position: absolute;
	top: 0;
	left: 50%;
	width: 56px;
	height: 56px;
	margin-left: -28px;
	border-radius: 50%;
	border: 2px solid transparent;
	transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.yps-how-diagram__node.is-active .yps-how-diagram__node-ring {
	border-color: rgba(124, 58, 237, 0.45);
	box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.1), var(--yps-glow);
	transform: scale(1.06);
}

.yps-how-diagram__node-icon {
	position: relative;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: 50%;
	box-shadow: var(--yps-shadow);
	color: var(--yps-accent);
	transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease;
}

.yps-how-diagram__node-icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.yps-how-diagram__node.is-active .yps-how-diagram__node-icon {
	background: linear-gradient(180deg, #fff, rgba(124, 58, 237, 0.06));
	color: var(--yps-accent-hover);
	transform: translateY(-2px);
}

.yps-how-diagram__node-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--yps-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: color 0.5s ease;
}

.yps-how-diagram__node.is-active .yps-how-diagram__node-label {
	color: var(--yps-accent);
}

.yps-how-diagram__connector {
	position: relative;
	flex: 1 1 48px;
	max-width: 96px;
	min-width: 32px;
	height: 24px;
	display: flex;
	align-items: center;
}

.yps-how-diagram__connector-line {
	display: block;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--yps-border), rgba(124, 58, 237, 0.35), var(--yps-border));
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.yps-how-diagram__connector-line::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
	background-size: 200% 100%;
	animation: yps-how-shimmer 3.2s ease-in-out infinite;
	animation-delay: var(--yps-flow-delay, 0s);
}

.yps-how-diagram__connector-dot {
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-radius: 50%;
	background: var(--yps-accent);
	box-shadow: 0 0 12px rgba(124, 58, 237, 0.55);
	animation: yps-how-dot 3.2s ease-in-out infinite;
	animation-delay: var(--yps-flow-delay, 0s);
	opacity: 0;
}

.yps-how-diagram__panel {
	max-width: 640px;
	margin-inline: auto;
	background: #0b1020;
	border-radius: var(--yps-radius-lg);
	border: 1px solid rgba(148, 163, 184, 0.15);
	overflow: hidden;
	box-shadow: var(--yps-shadow-lg), var(--yps-glow-cyan);
}

.yps-how-diagram__panel-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0.75rem 1rem;
	background: rgba(15, 23, 42, 0.95);
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.yps-how-diagram__panel-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(148, 163, 184, 0.35);
}

.yps-how-diagram__panel-bar span:nth-child(1) { background: #f87171; }
.yps-how-diagram__panel-bar span:nth-child(2) { background: #fbbf24; }
.yps-how-diagram__panel-bar span:nth-child(3) { background: #34d399; }

.yps-how-diagram__panel-bar em {
	margin-left: auto;
	font-style: normal;
	font-size: 0.6875rem;
	color: #64748b;
	font-family: ui-monospace, monospace;
}

.yps-how-diagram__panel-body {
	position: relative;
	min-height: 6.5rem;
	padding: 1.125rem 1.25rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.8125rem;
	line-height: 1.55;
}

.yps-how-diagram__panel-step {
	position: absolute;
	inset: 1.125rem 1.25rem;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
}

.yps-how-diagram__panel-step.is-active {
	position: relative;
	inset: auto;
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.yps-how-diagram__panel-line {
	margin: 0 0 0.5rem;
	color: #94a3b8;
}

.yps-how-diagram__panel-step.is-active .yps-how-diagram__panel-line {
	animation: yps-how-line-in 0.5s ease forwards;
	animation-delay: var(--yps-line-delay, 0s);
	opacity: 0;
}

.yps-how-diagram__panel-line:last-child {
	margin-bottom: 0;
}

.yps-how-diagram__panel-line--ok {
	color: #86efac;
	padding-left: 1.125rem;
	position: relative;
}

.yps-how-diagram__panel-line--ok::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.yps-how-steps .yps-step {
	padding: 1.75rem;
}

.yps-step.is-active {
	border-color: rgba(124, 58, 237, 0.35);
	box-shadow: var(--yps-shadow), 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.yps-step.is-active .yps-step__num {
	animation: yps-pulse-glow 2s ease-in-out infinite;
}

/* ── Console ── */
.yps-console {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 3rem;
	align-items: center;
}

.yps-console__panel {
	background: #080c1c;
	border-radius: var(--yps-radius-xl);
	border: 1px solid rgba(148, 163, 184, 0.12);
	overflow: hidden;
	box-shadow: var(--yps-shadow-lg), var(--yps-glow-cyan);
}

.yps-console__bar {
	display: flex;
	gap: 6px;
	padding: 0.875rem 1.125rem;
	background: rgba(15, 23, 42, 0.9);
	border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.yps-console__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.yps-console__dot--r { background: #f87171; }
.yps-console__dot--y { background: #fbbf24; }
.yps-console__dot--g { background: #4ade80; }

.yps-console__body {
	padding: 1.5rem;
	font-family: ui-monospace, monospace;
	font-size: 0.8125rem;
	line-height: 1.85;
	color: #94a3b8;
	min-height: 300px;
}

.yps-console__line--user { color: #e2e8f0; }
.yps-console__line--tool { color: #67e8f9; }
.yps-console__line--ok { color: #86efac; }

/* ── Stats section (standalone) ── */
.yps-stats-band {
	padding-block: 3rem;
	background: linear-gradient(180deg, var(--yps-primary) 0%, var(--yps-primary-soft) 100%);
}

.yps-stats-band__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* ── Testimonials ── */
.yps-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.yps-testimonial {
	padding: 2rem;
	background: var(--yps-surface);
	border-radius: var(--yps-radius-lg);
	border: 1px solid var(--yps-border);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yps-testimonial:hover {
	transform: translateY(-4px);
	box-shadow: var(--yps-shadow);
}

.yps-testimonial__stars {
	color: #fbbf24;
	font-size: 0.875rem;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.yps-testimonial__quote {
	font-size: 0.9375rem;
	color: var(--yps-text);
	line-height: 1.7;
	margin: 0 0 1.5rem;
}

.yps-testimonial__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.yps-testimonial__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--yps-gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
}

.yps-testimonial__name {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--yps-primary);
}

.yps-testimonial__role {
	font-size: 0.8125rem;
	color: var(--yps-text-muted);
}

/* ── Tools table ── */
.yps-tools-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--yps-surface);
	border-radius: var(--yps-radius-lg);
	overflow: hidden;
	border: 1px solid var(--yps-border);
	box-shadow: var(--yps-shadow);
}

.yps-tools-table th,
.yps-tools-table td {
	padding: 1.125rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid var(--yps-border);
}

.yps-tools-table th {
	background: var(--yps-background);
	font-family: var(--yps-font-heading);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--yps-text-muted);
}

.yps-tools-table tr:last-child td { border-bottom: none; }
.yps-tools-table tr:hover td { background: rgba(124, 58, 237, 0.03); }

.yps-tools-table code {
	background: var(--yps-accent-soft);
	color: var(--yps-accent);
	padding: 0.25em 0.625em;
	border-radius: 8px;
	font-size: 0.875rem;
}

/* ── CTA ── */
.yps-cta-wrap {
	padding-block: 2rem;
}

.yps-cta {
	position: relative;
	text-align: center;
	padding: clamp(3.5rem, 7vw, 5.5rem) 2rem;
	background: var(--yps-primary);
	border-radius: var(--yps-radius-xl);
	color: #fff;
	overflow: hidden;
}

.yps-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.25) 0%, transparent 45%);
	pointer-events: none;
}

.yps-cta > * { position: relative; z-index: 1; }

.yps-cta__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: #fff;
	margin: 0 0 1rem;
}

.yps-cta__text {
	opacity: 0.88;
	max-width: 34rem;
	margin: 0 auto 2rem;
	font-size: 1.0625rem;
}

.yps-cta .yps-hero__actions {
	justify-content: center;
}

/* ── About ── */
.yps-about-hero {
	position: relative;
	padding-block: clamp(7rem, 12vw, 9rem) 0;
	background: linear-gradient(165deg, #1e1b4b 0%, #312e81 45%, #1e1b4b 100%);
	color: #cbd5e1;
	overflow: hidden;
}

.yps-about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 15%, rgba(124, 58, 237, 0.35) 0%, transparent 45%),
		radial-gradient(circle at 85% 60%, rgba(99, 102, 241, 0.2) 0%, transparent 40%);
	pointer-events: none;
}

.yps-about-hero .yps-eyebrow {
	color: #c4b5fd;
}

.yps-float-bg--about .yps-float-bg__blob--1 {
	width: 420px;
	height: 420px;
	top: -8%;
	right: -5%;
	background: rgba(124, 58, 237, 0.18);
}

.yps-float-bg--about .yps-float-bg__blob--2 {
	width: 320px;
	height: 320px;
	bottom: 5%;
	left: -8%;
	background: rgba(99, 102, 241, 0.14);
}

.yps-about-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.yps-about-hero__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	color: #f8fafc;
	margin: 0 0 1rem;
	max-width: 16ch;
}

.yps-about-hero__lead {
	font-size: 1.125rem;
	color: #94a3b8;
	max-width: 36rem;
	margin: 0;
	line-height: 1.65;
}

.yps-about-hero__frame {
	position: relative;
	border-radius: var(--yps-radius-xl);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.yps-about-hero__frame img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.yps-about-hero__chip {
	position: absolute;
	padding: 0.45rem 0.875rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.92);
	color: var(--yps-primary);
	box-shadow: var(--yps-shadow);
	animation: yps-float 5s ease-in-out infinite;
}

.yps-about-hero__chip--1 { top: 12%; left: 8%; animation-delay: 0s; }
.yps-about-hero__chip--2 { top: 55%; right: 6%; animation-delay: -2s; }
.yps-about-hero__chip--3 { bottom: 10%; left: 14%; animation-delay: -4s; }

.yps-about-hero__stats-wrap {
	position: relative;
	z-index: 2;
	padding-bottom: 4.5rem;
}

.yps-about-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.yps-about-stat-card {
	position: relative;
	text-align: center;
	padding: 1.75rem 1.25rem 1.5rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-xl);
	box-shadow: 0 16px 48px rgba(30, 27, 75, 0.12);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	overflow: hidden;
}

.yps-about-stat-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: var(--yps-gradient-brand);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.yps-about-stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 56px rgba(124, 58, 237, 0.15);
	border-color: rgba(124, 58, 237, 0.25);
}

.yps-about-stat-card:hover::before {
	opacity: 1;
}

.yps-about-stat-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(99, 102, 241, 0.08));
	color: var(--yps-accent);
}

.yps-about-stat-card__icon svg {
	width: 26px;
	height: 26px;
}

.yps-about-stat-card__num {
	font-family: var(--yps-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--yps-primary);
	line-height: 1;
	margin: 0 0 0.5rem;
}

.yps-about-stat-card__num em {
	font-style: normal;
	background: var(--yps-gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.yps-about-stat-card__label {
	font-size: 0.875rem;
	color: var(--yps-text-muted);
	margin: 0;
	line-height: 1.4;
}

.yps-about-hero__curve {
	position: relative;
	z-index: 1;
	line-height: 0;
	margin-top: -1px;
}

.yps-about-hero__curve svg {
	display: block;
	width: 100%;
	height: 64px;
}

.yps-about-story {
	padding-top: clamp(2rem, 4vw, 3rem);
}

.yps-about-story__inner {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	margin-bottom: 3rem;
}

.yps-about-story__photo {
	border-radius: var(--yps-radius-xl);
	overflow: hidden;
	box-shadow: var(--yps-shadow-lg);
	border: 1px solid var(--yps-border);
}

.yps-about-story__photo img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.yps-about-story__visual {
	position: relative;
}

.yps-about-story__float-card {
	position: absolute;
	bottom: -1.25rem;
	right: -0.5rem;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 1.25rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-lg);
	box-shadow: var(--yps-shadow-lg);
	animation: yps-float 6s ease-in-out infinite;
	max-width: 240px;
}

.yps-about-story__float-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--yps-accent-soft);
	color: var(--yps-accent);
}

.yps-about-story__float-icon svg {
	width: 20px;
	height: 20px;
}

.yps-about-story__float-card strong {
	display: block;
	font-size: 0.875rem;
	color: var(--yps-primary);
	margin-bottom: 0.15rem;
}

.yps-about-story__float-card span {
	font-size: 0.75rem;
	color: var(--yps-text-muted);
	line-height: 1.4;
}

.yps-about-story__lead {
	color: var(--yps-text-muted);
	font-size: 1.0625rem;
	line-height: 1.65;
	margin: 0 0 1.75rem;
	max-width: 36rem;
}

.yps-about-pillars {
	display: grid;
	gap: 1rem;
}

.yps-about-pillar {
	display: flex;
	gap: 1rem;
	padding: 1.25rem 1.375rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-lg);
	box-shadow: var(--yps-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yps-about-pillar:hover {
	transform: translateX(6px);
	box-shadow: var(--yps-shadow-lg);
}

.yps-about-pillar__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--yps-cyan-soft), var(--yps-accent-soft));
	color: var(--yps-accent);
}

.yps-about-pillar__icon svg {
	width: 24px;
	height: 24px;
}

.yps-about-pillar h3 {
	font-size: 1rem;
	margin: 0 0 0.375rem;
}

.yps-about-pillar p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--yps-text-muted);
	line-height: 1.6;
}

.yps-about-flow {
	padding: 2rem;
	background: linear-gradient(180deg, var(--yps-surface) 0%, var(--yps-background) 100%);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-xl);
	box-shadow: var(--yps-shadow);
}

.yps-about-flow__title {
	text-align: center;
	font-size: 1.125rem;
	margin: 0 0 1.5rem;
}

.yps-about-flow__track,
.yps-security__arch-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
}

.yps-about-flow__node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.25rem 1rem !important;
	max-width: 160px;
	transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.yps-about-flow__node.is-active {
	transform: translateY(-4px);
	box-shadow: var(--yps-shadow-lg), var(--yps-glow);
	border-color: rgba(124, 58, 237, 0.35) !important;
}

.yps-about-flow__node-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--yps-background);
	border: 1px solid var(--yps-border);
	color: var(--yps-accent);
}

.yps-about-flow__node-icon svg {
	width: 20px;
	height: 20px;
}

.yps-about-flow__connector {
	position: relative;
	flex: 1 1 48px;
	max-width: 72px;
	min-width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--yps-border), rgba(124, 58, 237, 0.35), var(--yps-border));
}

.yps-about-flow__connector-dot {
	position: absolute;
	top: 50%;
	left: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-radius: 50%;
	background: var(--yps-accent);
	box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
	animation: yps-how-dot 3s ease-in-out infinite;
}

.yps-security__arch-arrow {
	animation: yps-arch-pulse 2s ease-in-out infinite;
}

.yps-prose { max-width: 42rem; }
.yps-prose p { margin: 0 0 1.25rem; color: var(--yps-text); }
.yps-prose h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }

.yps-security-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1rem;
}

.yps-security-list li {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yps-security-list li:hover {
	transform: translateX(4px);
	box-shadow: var(--yps-shadow);
}

.yps-security-list__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--yps-cyan-soft), var(--yps-accent-soft));
	color: var(--yps-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.yps-security-list__icon svg {
	width: 22px;
	height: 22px;
}

/* ── Security documentation ── */
.yps-security__arch {
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-xl);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 2.5rem;
	box-shadow: var(--yps-shadow);
}

.yps-security__arch-title {
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
}

.yps-security__arch-lead {
	color: var(--yps-text-muted);
	margin: 0 0 1.75rem;
	max-width: 52rem;
	line-height: 1.65;
}

.yps-arch {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-bottom: 1.75rem;
}

.yps-arch__node {
	flex: 1 1 140px;
	max-width: 180px;
	text-align: center;
	padding: 1.25rem 1rem;
	border-radius: var(--yps-radius-lg);
	border: 1px solid var(--yps-border);
	background: var(--yps-background);
	box-shadow: var(--yps-shadow);
}

.yps-arch__node strong {
	display: block;
	font-size: 0.9375rem;
	margin-bottom: 0.25rem;
	color: var(--yps-primary);
}

.yps-arch__node span {
	font-size: 0.8125rem;
	color: var(--yps-text-muted);
}

.yps-arch__node--agent { border-color: rgba(124, 58, 237, 0.25); background: linear-gradient(180deg, #fff, rgba(124, 58, 237, 0.04)); }
.yps-arch__node--console { border-color: rgba(99, 102, 241, 0.25); background: linear-gradient(180deg, #fff, rgba(99, 102, 241, 0.04)); }
.yps-arch__node--bridge { border-color: rgba(124, 58, 237, 0.35); background: linear-gradient(180deg, #fff, rgba(124, 58, 237, 0.08)); }
.yps-arch__node--wp { border-color: rgba(30, 27, 75, 0.15); }

.yps-arch__arrow {
	font-size: 1.25rem;
	color: var(--yps-accent);
	font-weight: 600;
	flex-shrink: 0;
}

.yps-security__flow-notes {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.625rem;
}

.yps-security__flow-notes li {
	font-size: 0.9375rem;
	color: var(--yps-text-muted);
	padding: 0.75rem 1rem;
	background: var(--yps-background);
	border-radius: var(--yps-radius);
	border-left: 3px solid var(--yps-accent);
}

.yps-security__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.yps-security__card {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-lg);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yps-security__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--yps-shadow);
}

.yps-security__card h3 {
	font-size: 1rem;
	margin: 0 0 0.5rem;
}

.yps-security__card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--yps-text-muted);
	line-height: 1.6;
}

.yps-security__practices {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(99, 102, 241, 0.04));
	border: 1px solid rgba(124, 58, 237, 0.12);
	border-radius: var(--yps-radius-xl);
	padding: 2rem 2.25rem;
}

.yps-security__practices h3 {
	font-size: 1.125rem;
	margin: 0 0 1rem;
}

.yps-security__practices ul {
	margin: 0;
	padding-left: 1.25rem;
	color: var(--yps-text-muted);
	line-height: 1.75;
}

.yps-security__practices li + li {
	margin-top: 0.375rem;
}

/* ── Contact (AI Hub split layout) ── */
.yps-contact-split {
	position: relative;
	padding-block: clamp(6.5rem, 11vw, 8.5rem) 0;
	background: #fff;
	overflow: hidden;
}

.yps-contact-split__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(30, 27, 75, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(30, 27, 75, 0.04) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 85%);
	pointer-events: none;
}

.yps-float-bg--contact .yps-float-bg__blob--1 {
	width: 260px;
	height: 260px;
	top: 10%;
	left: 5%;
	background: rgba(248, 187, 208, 0.35);
}

.yps-float-bg--contact .yps-float-bg__blob--2 {
	width: 200px;
	height: 200px;
	bottom: 20%;
	right: 8%;
	background: rgba(124, 58, 237, 0.12);
}

.yps-contact-split__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.yps-contact-split__badge {
	display: inline-block;
	padding: 0.4rem 0.875rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--yps-primary);
	background: #eef5dc;
	margin: 0 0 1.25rem;
}

.yps-contact-split__title {
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
	color: var(--yps-primary);
	margin: 0 0 1.25rem;
	line-height: 1.08;
	max-width: 14ch;
}

.yps-contact-split__title mark {
	background: none;
	color: inherit;
	position: relative;
	display: inline-block;
}

.yps-contact-split__title mark::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.08em;
	height: 0.28em;
	background: rgba(248, 187, 208, 0.75);
	border-radius: 4px;
	z-index: -1;
}

.yps-contact-split__sub {
	color: var(--yps-text-muted);
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 0 1.75rem;
	max-width: 38ch;
}

.yps-contact-split__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--yps-primary);
}

.yps-contact-split__link:hover {
	color: var(--yps-accent);
}

.yps-contact-split__link-icon {
	font-size: 1rem;
}

/* Illustration */
.yps-contact-illus {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.yps-contact-illus__bubble {
	position: relative;
	width: min(100%, 340px);
	aspect-ratio: 1.1;
	background: linear-gradient(145deg, #f9a8d4 0%, #f472b6 45%, #ec4899 100%);
	border-radius: 48% 52% 55% 45% / 52% 48% 52% 48%;
	box-shadow: 0 30px 80px rgba(236, 72, 153, 0.25);
	animation: yps-float 7s ease-in-out infinite;
	display: flex;
	align-items: center;
	justify-content: center;
}

.yps-contact-illus__device {
	position: absolute;
	bottom: 22%;
	left: 18%;
	width: 42%;
	background: #fff;
	border-radius: 10px;
	padding: 0.5rem;
	box-shadow: 0 12px 32px rgba(30, 27, 75, 0.15);
	transform: rotate(-8deg);
}

.yps-contact-illus__screen {
	display: block;
	height: 48px;
	border-radius: 6px;
	background: linear-gradient(135deg, #ede9fe, #ddd6fe);
	margin-bottom: 0.35rem;
}

.yps-contact-illus__kbd {
	display: block;
	height: 10px;
	border-radius: 3px;
	background: #e2e8f0;
}

.yps-contact-illus__avatar {
	position: absolute;
	top: 18%;
	right: 16%;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: yps-float-slow 9s ease-in-out infinite;
}

.yps-contact-illus__head {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(180deg, #fde68a, #fbbf24);
	border: 3px solid #fff;
	box-shadow: 0 8px 24px rgba(30, 27, 75, 0.12);
}

.yps-contact-illus__body {
	width: 64px;
	height: 48px;
	margin-top: -6px;
	border-radius: 24px 24px 12px 12px;
	background: linear-gradient(180deg, #fb923c, #ea580c);
	border: 3px solid #fff;
}

.yps-contact-illus__chip {
	position: absolute;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	background: #fff;
	border: 1px solid var(--yps-border);
	box-shadow: var(--yps-shadow);
	color: var(--yps-accent);
	animation: yps-float 6s ease-in-out infinite;
}

.yps-contact-illus__chip--1 { top: 8%; right: 12%; animation-delay: -2s; }
.yps-contact-illus__chip--2 { bottom: 12%; left: 8%; animation-delay: -4s; }

.yps-contact-banner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.25rem;
	padding: 1.25rem 0 2.5rem;
	border-top: 1px solid var(--yps-border);
}

.yps-contact-banner__badge {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--yps-primary);
	background: #e0f7fa;
}

.yps-contact-banner__text {
	margin: 0;
	font-size: 1rem;
	color: var(--yps-text-muted);
}

.yps-contact-banner__text a {
	color: var(--yps-primary);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.yps-contact-form-section {
	padding-top: clamp(2rem, 4vw, 3rem);
}

.yps-contact-form__title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0 0 0.75rem;
}

.yps-contact-form__lead {
	color: var(--yps-text-muted);
	margin: 0 0 2rem;
	line-height: 1.65;
	max-width: 36ch;
}

.yps-contact-info__cards {
	display: grid;
	gap: 1rem;
}

.yps-contact-info__card {
	padding: 1.25rem;
	background: var(--yps-background);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius);
}

.yps-contact-info__card h3 {
	font-size: 0.875rem;
	margin: 0 0 0.375rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--yps-accent);
}

.yps-contact-info__card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--yps-text-muted);
	line-height: 1.55;
}

.yps-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 3rem;
	align-items: start;
}

.yps-contact-info h3 {
	font-size: 1rem;
	margin: 0 0 0.5rem;
}

.yps-contact-info p,
.yps-contact-info a {
	color: var(--yps-text-muted);
	margin: 0 0 1.5rem;
}

.yps-contact-form-wrap {
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-xl);
	padding: 2.25rem;
	box-shadow: var(--yps-shadow-lg);
}

.yps-cf7-form .wpcf7-form p { margin-bottom: 1rem; }

.yps-cf7-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.375rem;
	color: var(--yps-primary);
}

.yps-cf7-form input[type="text"],
.yps-cf7-form input[type="email"],
.yps-cf7-form textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--yps-border);
	border-radius: 12px;
	font-family: var(--yps-font-body);
	font-size: 1rem;
	background: var(--yps-background);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yps-cf7-form input:focus,
.yps-cf7-form textarea:focus {
	outline: none;
	border-color: var(--yps-accent);
	box-shadow: 0 0 0 4px var(--yps-accent-soft);
}

.yps-cf7-form input[type="submit"],
.yps-cf7-form .wpcf7-submit {
	background: var(--yps-gradient-brand);
	color: #fff;
	border: none;
	padding: 0.9375rem 2.25rem;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yps-cf7-form input[type="submit"]:hover,
.yps-cf7-form .wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

.yps-contact-fallback .yps-field { margin-bottom: 1rem; }
.yps-contact-fallback label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.yps-contact-fallback input,
.yps-contact-fallback textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--yps-border);
	border-radius: 12px;
}

.yps-contact-fallback button {
	background: var(--yps-gradient-brand);
	color: #fff;
	border: none;
	padding: 0.9375rem 2.25rem;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
}

/* ── Experience showcase (AI Hub style) ── */
.yps-experience {
	position: relative;
	padding-block: var(--yps-section-pad);
	background: #fff;
	overflow: hidden;
}

.yps-experience__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(30, 27, 75, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(30, 27, 75, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 15%, transparent 80%);
	pointer-events: none;
}

.yps-experience__cloud {
	position: absolute;
	left: 4%;
	bottom: 18%;
	width: 72px;
	height: 48px;
	background: rgba(248, 187, 208, 0.55);
	border-radius: 50%;
	filter: blur(2px);
	animation: yps-float 9s ease-in-out infinite;
	pointer-events: none;
}

.yps-experience__cloud::before,
.yps-experience__cloud::after {
	content: "";
	position: absolute;
	background: inherit;
	border-radius: 50%;
}

.yps-experience__cloud::before {
	width: 36px;
	height: 36px;
	top: -12px;
	left: 8px;
}

.yps-experience__cloud::after {
	width: 28px;
	height: 28px;
	top: -6px;
	right: 4px;
}

.yps-experience__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.yps-experience__title {
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
	color: var(--yps-primary);
	margin: 0 0 1.25rem;
	line-height: 1.08;
	max-width: 12ch;
}

.yps-experience__title mark {
	background: none;
	color: inherit;
	position: relative;
	display: inline-block;
}

.yps-experience__title mark::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.06em;
	height: 0.28em;
	background: rgba(248, 187, 208, 0.75);
	border-radius: 4px;
	z-index: -1;
}

.yps-experience__lead {
	color: var(--yps-text-muted);
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 0 1.75rem;
	max-width: 38ch;
}

.yps-experience__checks {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: grid;
	gap: 0.875rem;
}

.yps-experience__checks li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
	color: var(--yps-primary);
}

.yps-experience__check-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(244, 114, 182, 0.15);
	color: #db2777;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
}

.yps-btn--dark {
	background: var(--yps-primary);
	color: #fff;
	box-shadow: 0 8px 28px rgba(30, 27, 75, 0.2);
}

.yps-btn--dark:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(30, 27, 75, 0.28);
}

.yps-experience__visual {
	position: relative;
	min-height: 420px;
}

.yps-experience__stack {
	position: relative;
	width: min(100%, 400px);
	margin-inline: auto;
	min-height: 400px;
}

.yps-experience__portrait {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: var(--yps-radius-xl);
	background: linear-gradient(160deg, #c4b5fd 0%, #f9a8d4 40%, #818cf8 100%);
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(124, 58, 237, 0.2);
	animation: yps-float-slow 10s ease-in-out infinite;
}

.yps-experience__portrait-glow {
	position: absolute;
	inset: 20% 15% 10%;
	border-radius: 50% 50% 45% 45%;
	background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05));
}

.yps-experience__chat-card {
	position: absolute;
	top: 6%;
	left: -8%;
	width: min(240px, 72%);
	background: #fff;
	border-radius: var(--yps-radius-lg);
	padding: 1rem 1.125rem;
	box-shadow: 0 16px 48px rgba(30, 27, 75, 0.12);
	border: 1px solid var(--yps-border);
	animation: yps-float 8s ease-in-out infinite;
	animation-delay: -2s;
}

.yps-experience__chat-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--yps-primary);
	margin-bottom: 0.625rem;
}

.yps-experience__chat-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--yps-gradient-brand);
}

.yps-experience__chat-line {
	margin: 0 0 0.375rem;
	font-size: 0.8125rem;
	color: var(--yps-text);
	line-height: 1.45;
}

.yps-experience__chat-line--muted {
	color: var(--yps-text-muted);
	margin-bottom: 0;
}

.yps-experience__sites-card {
	position: absolute;
	bottom: 4%;
	left: -6%;
	width: min(280px, 78%);
	background: #fff;
	border-radius: var(--yps-radius-lg);
	padding: 1rem;
	box-shadow: 0 20px 56px rgba(30, 27, 75, 0.14);
	border: 1px solid var(--yps-border);
	animation: yps-float-slow 9s ease-in-out infinite;
	animation-delay: -4s;
}

.yps-experience__sites-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem 0.5rem;
}

.yps-experience__site {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	text-align: center;
}

.yps-experience__site-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--yps-primary);
}

.yps-experience__site-name {
	font-size: 0.625rem;
	color: var(--yps-text-muted);
	line-height: 1.2;
}

.yps-experience__flow {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	padding: 1.25rem 2rem;
	background: #fff;
	border: 1px solid var(--yps-border);
	border-radius: 999px;
	box-shadow: var(--yps-shadow-lg);
	max-width: 920px;
	margin-inline: auto;
}

.yps-experience__flow-step {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--yps-primary);
	white-space: nowrap;
}

.yps-experience__flow-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--yps-background);
	border: 1px solid var(--yps-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
}

.yps-experience__flow-arrow {
	font-size: 1.25rem;
	color: var(--yps-accent);
	opacity: 0.65;
	transform: rotate(-15deg);
}

/* Hide default hello header when chrome is active */
.yps-body .site-header:not(.yps-chrome-header) {
	display: none;
}

.yps-body .site-main {
	padding-top: 0;
}

/* ── Blog ── */
.yps-blog-hero {
	position: relative;
	padding-block: clamp(6.5rem, 11vw, 8rem) clamp(2rem, 4vw, 3rem);
	background: #fff;
	overflow: hidden;
}

.yps-blog-hero__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(30, 27, 75, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(30, 27, 75, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 15%, transparent 80%);
	pointer-events: none;
}

.yps-blog-hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 40rem;
	margin-inline: auto;
}

.yps-blog-hero__title {
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
	margin: 0 0 1rem;
	color: var(--yps-primary);
}

.yps-blog-hero__title mark {
	background: none;
	color: inherit;
	position: relative;
	display: inline-block;
}

.yps-blog-hero__title mark::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.06em;
	height: 0.28em;
	background: rgba(248, 187, 208, 0.75);
	border-radius: 4px;
	z-index: -1;
}

.yps-blog-hero__sub {
	color: var(--yps-text-muted);
	font-size: 1.0625rem;
	margin: 0;
	line-height: 1.65;
}

.yps-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.yps-blog-card {
	background: var(--yps-surface);
	border: 1px solid var(--yps-border);
	border-radius: var(--yps-radius-xl);
	overflow: hidden;
	box-shadow: var(--yps-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.yps-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--yps-shadow-lg);
}

.yps-blog-card__media {
	display: flex;
	align-items: flex-end;
	min-height: 160px;
	padding: 1.25rem;
	text-decoration: none;
}

.yps-blog-card__cat {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.92);
	color: var(--yps-primary);
}

.yps-blog-card__body {
	padding: 1.5rem;
}

.yps-blog-card__date {
	display: block;
	font-size: 0.8125rem;
	color: var(--yps-text-muted);
	margin-bottom: 0.625rem;
}

.yps-blog-card__title {
	font-size: 1.1875rem;
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.yps-blog-card__title a {
	color: var(--yps-primary);
}

.yps-blog-card__title a:hover {
	color: var(--yps-accent);
}

.yps-blog-card__excerpt {
	color: var(--yps-text-muted);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.yps-blog-empty {
	text-align: center;
	color: var(--yps-text-muted);
	padding: 3rem;
}

/* ── Latest News (homepage) ── */
.yps-latest-news {
	background: var(--yps-background);
}

.yps-latest-news__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.yps-latest-news__intro {
	max-width: 36rem;
}

.yps-latest-news__intro mark {
	background: none;
	color: inherit;
	position: relative;
	display: inline-block;
}

.yps-latest-news__intro mark::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.06em;
	height: 0.28em;
	background: rgba(248, 187, 208, 0.75);
	border-radius: 4px;
	z-index: -1;
}

.yps-latest-news__sub {
	color: var(--yps-text-muted);
	font-size: 1.0625rem;
	line-height: 1.65;
	margin: 0.75rem 0 0;
}

.yps-latest-news__all {
	flex-shrink: 0;
	white-space: nowrap;
}

.yps-latest-news__grid .yps-blog-card__media {
	min-height: 180px;
}

.yps-single-wrap {
	padding-top: 5.5rem;
}

.yps-single-post__featured {
	margin-top: 0;
	max-height: 420px;
	overflow: hidden;
	background: var(--yps-primary);
}

.yps-single-post__featured-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.yps-single-post__header {
	padding-block: clamp(3rem, 6vw, 4rem) 2rem;
	background: linear-gradient(180deg, #fff 0%, var(--yps-background) 100%);
	border-bottom: 1px solid var(--yps-border);
}

.yps-single-post__header-inner {
	max-width: 44rem;
}

.yps-single-post__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: 0 0 0.75rem;
	color: var(--yps-primary);
	line-height: 1.12;
}

.yps-single-post__meta {
	color: var(--yps-text-muted);
	font-size: 0.9375rem;
	margin: 0;
}

.yps-single-post__content {
	max-width: 42rem;
	margin: 0 auto;
	padding-block: 2.5rem 1rem;
}

.yps-single-post__content h2 {
	font-size: 1.375rem;
	margin: 2rem 0 0.75rem;
}

.yps-single-post__content ul,
.yps-single-post__content ol {
	margin: 0 0 1.25rem;
	padding-left: 1.25rem;
	color: var(--yps-text);
}

.yps-single-post__content li {
	margin-bottom: 0.375rem;
}

.yps-single-post__content pre {
	background: var(--yps-primary);
	color: #e2e8f0;
	padding: 1.25rem 1.5rem;
	border-radius: var(--yps-radius);
	overflow-x: auto;
	font-size: 0.8125rem;
	line-height: 1.6;
	margin: 1.5rem 0;
}

.yps-single-post__content code {
	font-family: ui-monospace, monospace;
	font-size: 0.875em;
	background: var(--yps-accent-soft);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}

.yps-single-post__content pre code {
	background: none;
	padding: 0;
}

.yps-single-post__content blockquote {
	margin: 1.5rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 4px solid var(--yps-accent);
	background: var(--yps-accent-soft);
	border-radius: 0 var(--yps-radius) var(--yps-radius) 0;
	color: var(--yps-primary);
}

.yps-post-figure {
	margin: 2rem 0;
	border-radius: var(--yps-radius-xl);
	overflow: hidden;
	box-shadow: var(--yps-shadow-lg);
	border: 1px solid var(--yps-border);
}

.yps-post-figure img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.yps-post-figure figcaption {
	padding: 0.875rem 1.25rem;
	font-size: 0.875rem;
	color: var(--yps-text-muted);
	background: var(--yps-background);
	border-top: 1px solid var(--yps-border);
	line-height: 1.5;
}

.yps-post-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0 2rem;
	font-size: 0.9375rem;
	border-radius: var(--yps-radius);
	overflow: hidden;
	border: 1px solid var(--yps-border);
}

.yps-post-table th,
.yps-post-table td {
	padding: 0.875rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--yps-border);
}

.yps-post-table th {
	background: var(--yps-background);
	font-weight: 600;
	color: var(--yps-primary);
}

.yps-post-table tr:last-child td {
	border-bottom: none;
}

.yps-blog-card__media {
	background-size: cover !important;
	background-position: center !important;
}

.yps-single-post__back {
	max-width: 42rem;
	margin: 0 auto;
	padding-bottom: 3rem;
}

.yps-single-post__back a {
	font-weight: 600;
	color: var(--yps-accent);
}

/* Pricing hub — reference layout */
.yps-pricing-hub {
	position: relative;
	overflow: hidden;
	padding: clamp(3rem, 7vw, 5rem) 0 0;
	background: #fff;
}

.yps-pricing-hub__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(36, 36, 77, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(36, 36, 77, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}

.yps-pricing-hub__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

@media (min-width: 960px) {
	.yps-pricing-hub__layout {
		grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.15fr);
		gap: 3rem;
	}
}

.yps-pricing-hub__title {
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
	line-height: 1.12;
	font-weight: 800;
	color: #24244d;
	margin: 0 0 1rem;
	max-width: 11ch;
}

.yps-pricing-hub__title mark {
	background: linear-gradient(transparent 58%, #ffd6e8 58%);
	color: inherit;
	padding: 0 0.08em;
}

.yps-pricing-hub__lead {
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.65;
	max-width: 34ch;
	margin: 0 0 1.75rem;
}

.yps-pricing-illus {
	position: relative;
	width: min(100%, 280px);
	height: 220px;
	margin: 0 0 1.75rem;
}

.yps-pricing-illus__figure {
	position: absolute;
	left: 18%;
	bottom: 18%;
	width: 72px;
	height: 120px;
	animation: yps-pricing-float 4s ease-in-out infinite;
}

.yps-pricing-illus__head {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fbbf9a;
	border: 3px solid #fff;
	box-shadow: 0 4px 12px rgba(36, 36, 77, 0.12);
}

.yps-pricing-illus__body {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 52px;
	border-radius: 18px 18px 10px 10px;
	background: #fff;
	border: 2px solid #e5e7eb;
}

.yps-pricing-illus__legs {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 38px;
	border-radius: 0 0 16px 16px;
	background: linear-gradient(#3b82f6, #2563eb);
}

.yps-pricing-illus__card {
	position: absolute;
	right: 8%;
	top: 28%;
	width: 130px;
	height: 82px;
	border-radius: 14px;
	background: linear-gradient(135deg, #24244d, #3d3d72);
	box-shadow: 0 18px 40px rgba(36, 36, 77, 0.22);
	transform: rotate(-8deg);
	animation: yps-pricing-float 4s ease-in-out infinite reverse;
}

.yps-pricing-illus__chip {
	position: absolute;
	top: 18px;
	left: 16px;
	width: 28px;
	height: 20px;
	border-radius: 4px;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.yps-pricing-illus__stripe {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	height: 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.25);
}

.yps-pricing-illus__coins span {
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b);
	box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}

.yps-pricing-illus__coins span:nth-child(1) { top: 12%; left: 58%; animation: yps-pricing-float 3.2s ease-in-out infinite; }
.yps-pricing-illus__coins span:nth-child(2) { top: 42%; right: 4%; animation: yps-pricing-float 3.8s ease-in-out infinite reverse; }
.yps-pricing-illus__coins span:nth-child(3) { bottom: 18%; left: 42%; animation: yps-pricing-float 4.4s ease-in-out infinite; }

@keyframes yps-pricing-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.yps-pricing-hub__toggle {
	display: inline-flex;
	gap: 0.25rem;
	padding: 0.25rem;
	border-radius: 999px;
	background: #f3f4f6;
}

.yps-pricing-hub__toggle-btn {
	border: none;
	background: transparent;
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	color: #6b7280;
}

.yps-pricing-hub__toggle-btn.is-active {
	background: #24244d;
	color: #fff;
}

.yps-pricing-hub__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.yps-pricing-hub__cards {
		grid-template-columns: 1fr 1fr;
	}
}

.yps-plan-card {
	display: flex;
	flex-direction: column;
	padding: 1.75rem 1.5rem;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #ececf3;
	box-shadow: 0 16px 48px rgba(36, 36, 77, 0.08);
	transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.yps-plan-card.is-selected {
	border-color: #ff6b9d;
	box-shadow: 0 20px 56px rgba(255, 107, 157, 0.16);
}

.yps-plan-card__name {
	margin: 0 0 0.35rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #24244d;
}

.yps-plan-card__name--accent {
	color: #ff6b9d;
}

.yps-plan-card__tagline {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	color: #9ca3af;
}

.yps-plan-card__price {
	margin: 0 0 1.25rem;
}

.yps-plan-card__price--inline {
	margin: 0;
	white-space: nowrap;
}

.yps-plan-card__amount {
	font-size: 2.25rem;
	font-weight: 800;
	color: #24244d;
	letter-spacing: -0.02em;
}

.yps-plan-card__period {
	font-size: 0.9375rem;
	color: #9ca3af;
	margin-left: 0.15rem;
}

.yps-plan-card__features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	font-size: 0.875rem;
	flex: 1;
}

.yps-plan-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.65rem;
	color: #374151;
}

.yps-plan-card__features li.is-included span {
	color: #ff6b9d;
	font-weight: 700;
}

.yps-plan-card--pro .yps-plan-card__features li.is-included span {
	color: #24244d;
}

.yps-plan-card__features li.is-excluded {
	color: #d1d5db;
}

.yps-plan-card__features li.is-excluded span {
	color: #e5e7eb;
}

.yps-plan-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.85rem 1.25rem;
	border-radius: 999px;
	border: none;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s, opacity 0.15s;
	margin-top: auto;
}

.yps-plan-card__btn:hover {
	transform: translateY(-1px);
}

.yps-plan-card__btn--light {
	background: #fff0f5;
	color: #ff6b9d;
}

.yps-plan-card__btn--dark {
	background: #24244d;
	color: #fff;
}

.yps-plan-card__btn--ghost {
	background: #fff;
	color: #24244d;
	border: 1px solid #e5e7eb;
}

.yps-pricing-hub__secondary {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 1.25rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.yps-pricing-hub__secondary {
		grid-template-columns: 1fr 1fr;
	}
}

.yps-plan-card--compact {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 8px 28px rgba(36, 36, 77, 0.06);
}

.yps-plan-card--compact .yps-plan-card__btn {
	width: auto;
	margin-top: 0;
	margin-left: auto;
}

.yps-pricing-signup-wrap {
	margin-top: 2.5rem;
	position: relative;
	z-index: 1;
}

.yps-pricing-signup {
	max-width: 520px;
	margin: 0 auto;
	padding: 2rem;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #ececf3;
	box-shadow: 0 16px 48px rgba(36, 36, 77, 0.08);
}

.yps-pricing-signup__head h2 {
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
	color: #24244d;
}

.yps-pricing-signup__plan-label {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	color: #6b7280;
}

.yps-pricing-signup__plan-label strong {
	color: #ff6b9d;
}

.yps-pricing-signup__field {
	display: block;
	margin-bottom: 1rem;
}

.yps-pricing-signup__field span {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.35rem;
}

.yps-pricing-signup__field input {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	font-size: 0.9375rem;
	background: #fafafa;
}

.yps-pricing-signup__field input:focus {
	outline: 2px solid rgba(255, 107, 157, 0.35);
	border-color: #ff6b9d;
	background: #fff;
}

.yps-pricing-signup__note {
	font-size: 0.8125rem;
	color: #6b7280;
	line-height: 1.55;
	margin: 0 0 1rem;
}

.yps-pricing-signup__submit {
	margin-top: 0.25rem;
}

.yps-pricing-signup__error {
	margin: 0.75rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	background: #fef2f2;
	color: #b91c1c;
	font-size: 0.875rem;
}

.yps-pricing-signup__success h3 {
	margin: 0 0 0.5rem;
	color: #24244d;
}

.yps-pricing-signup__success p {
	color: #6b7280;
	margin: 0 0 1rem;
}

.is-hidden {
	display: none !important;
}

.yps-pricing-trust {
	margin-top: 2rem;
	background: #ecfdf5;
	border-top: 1px solid #d1fae5;
	border-bottom: 1px solid #d1fae5;
}

.yps-pricing-trust__inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 0;
	font-size: 0.8125rem;
	color: #065f46;
}

.yps-pricing-trust__icon {
	font-size: 1rem;
}

.yps-pricing-hub__faq {
	padding: 3rem 0 4rem;
	position: relative;
	z-index: 1;
}

.yps-pricing-hub__faq h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #24244d;
}

.yps-pricing-hub__faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.yps-pricing-faq {
	padding: 1.25rem;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #ececf3;
}

.yps-pricing-faq h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	color: #24244d;
}

.yps-pricing-faq p {
	margin: 0;
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.55;
}
