/*!
 * VYBE shared UI kit — tokens, buttons, cards, animated icons, pricing, tabs.
 * Shipped identically in the VYBE theme and plugins (loaded once, handle: vybe-ui).
 */
:root {
	--vybe-primary: #5b3df5;
	--vybe-primary-2: #8b5cf6;
	--vybe-accent: #0fb9a9;
	--vybe-warm: #ff8a3d;
	--vybe-ink: #0d1330;
	--vybe-text: #3b4263;
	--vybe-muted: #6b7394;
	--vybe-line: #e6e8f2;
	--vybe-bg: #ffffff;
	--vybe-soft: #f5f6fb;
	--vybe-success: #16a34a;
	--vybe-danger: #dc2626;
	--vybe-radius: 18px;
	--vybe-radius-sm: 10px;
	--vybe-shadow: 0 1px 2px rgba(13, 19, 48, .05), 0 8px 24px rgba(13, 19, 48, .06);
	--vybe-shadow-lg: 0 24px 60px -18px rgba(45, 30, 140, .28);
	--vybe-grad: linear-gradient(135deg, var(--vybe-primary) 0%, var(--vybe-primary-2) 45%, var(--vybe-accent) 100%);
	--vybe-ease: cubic-bezier(.22, 1, .36, 1);
	--vybe-font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans Tamil", sans-serif;
}

/* ---------- Layout helpers ---------- */
.vybe-wrap { width: min(1200px, 100% - 40px); margin-inline: auto; }
.vybe-grid { display: grid; gap: 24px; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); }
@media (max-width: 1024px) { .vybe-grid { grid-template-columns: repeat(min(var(--cols, 3), 2), minmax(0, 1fr)); } }
@media (max-width: 640px) { .vybe-grid { grid-template-columns: minmax(0, 1fr); } }

.vybe-section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.vybe-section-head.is-left { margin-left: 0; text-align: left; }
.vybe-eyebrow {
	width: fit-content; display: inline-flex; align-items: center; gap: 8px;
	font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: var(--vybe-primary); background: color-mix(in srgb, var(--vybe-primary) 9%, transparent);
	padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.vybe-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 20%, transparent); }
.vybe-section-head h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.6rem); line-height: 1.15; letter-spacing: -.02em; color: var(--vybe-ink); margin: 0 0 14px; }
.vybe-section-head p { color: var(--vybe-muted); font-size: 1.08rem; line-height: 1.7; margin: 0; }
.vybe-gradient-text { background: var(--vybe-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.vybe-btn {
	--_bg: var(--vybe-primary); --_fg: #fff;
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
	background: var(--_bg); color: var(--_fg) !important; text-decoration: none !important;
	font: 600 .98rem/1.2 var(--vybe-font); cursor: pointer; white-space: nowrap;
	transition: transform .35s var(--vybe-ease), box-shadow .35s var(--vybe-ease), background .25s, color .25s, border-color .25s;
	overflow: hidden; isolation: isolate;
}
.vybe-btn .vybe-icon { width: 18px; height: 18px; }
.vybe-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--_bg) 70%, transparent); }
.vybe-btn:hover .vybe-icon--arrow-right svg { transform: translateX(4px); }
.vybe-btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--vybe-primary) 45%, transparent); outline-offset: 3px; }
.vybe-btn--primary { background: var(--vybe-grad); background-size: 160% 160%; background-position: 0% 50%; }
.vybe-btn--primary:hover { background-position: 100% 50%; }
.vybe-btn--ghost { --_bg: transparent; --_fg: var(--vybe-ink); border-color: var(--vybe-line); }
.vybe-btn--ghost:hover { border-color: var(--vybe-primary); --_fg: var(--vybe-primary); box-shadow: none; }
.vybe-btn--light { --_bg: #fff; --_fg: var(--vybe-ink); }
.vybe-btn--outline-light { --_bg: transparent; --_fg: #fff; border-color: rgba(255, 255, 255, .35); }
.vybe-btn--outline-light:hover { border-color: #fff; box-shadow: none; }
.vybe-btn--success { --_bg: #1faa55; }
.vybe-btn--sm { padding: 9px 16px; font-size: .88rem; }
.vybe-btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.vybe-btn--block { width: 100%; white-space: normal; text-align: center; }
.vybe-btn[disabled], .vybe-btn.is-loading { opacity: .65; pointer-events: none; }
.vybe-btn.is-loading::after { content: ""; width: 16px; height: 16px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; animation: vybe-spin .7s linear infinite; }

.vybe-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--vybe-primary); text-decoration: none; }
.vybe-link .vybe-icon { width: 18px; height: 18px; }
.vybe-link:hover .vybe-icon svg { transform: translateX(4px); }

/* ---------- Animated icons ---------- */
.vybe-icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; flex-shrink: 0; }
.vybe-icon svg { width: 100%; height: 100%; overflow: visible; transition: transform .45s var(--vybe-ease); transform-origin: 50% 50%; }
/* Draw-in: only once JS has confirmed it can reveal the icon again. */
.vybe-anim-ready .vybe-icon:not(.is-static) svg > * {
	stroke-dasharray: 1; stroke-dashoffset: 1;
	transition: stroke-dashoffset 1.1s var(--vybe-ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}
.vybe-anim-ready .vybe-icon.is-drawn svg > * { stroke-dashoffset: 0; }
.vybe-icon.is-drawn[data-anim="float"] svg { animation: vybe-float 4.5s ease-in-out 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="spin"] svg { animation: vybe-spin 14s linear 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="pulse"] svg { animation: vybe-pulse 2.8s ease-in-out 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="bob"] svg { animation: vybe-bob 3.2s ease-in-out 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="wiggle"] svg { animation: vybe-wiggle 4s ease-in-out 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="beat"] svg { animation: vybe-beat 1.6s ease-in-out 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="flash"] svg { animation: vybe-flash 3s ease-in-out 1.3s infinite; }
.vybe-icon.is-drawn[data-anim="grow"] svg { animation: vybe-grow 3.6s var(--vybe-ease) 1.3s infinite; transform-origin: 50% 100%; }

@keyframes vybe-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes vybe-spin { to { transform: rotate(360deg); } }
@keyframes vybe-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes vybe-bob { 0%, 100% { transform: translateY(0) rotate(0); } 30% { transform: translateY(-2px) rotate(-4deg); } 60% { transform: translateY(1px) rotate(3deg); } }
@keyframes vybe-wiggle { 0%, 80%, 100% { transform: rotate(0); } 84% { transform: rotate(-10deg); } 88% { transform: rotate(9deg); } 92% { transform: rotate(-6deg); } 96% { transform: rotate(4deg); } }
@keyframes vybe-beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.12); } 30% { transform: scale(1); } 45% { transform: scale(1.08); } }
@keyframes vybe-flash { 0%, 70%, 100% { opacity: 1; } 78% { opacity: .35; } 86% { opacity: 1; } 92% { opacity: .5; } }
@keyframes vybe-grow { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.9); } }

/* Icon tile — gradient blob that morphs slowly behind the icon */
.vybe-icon-tile {
	--_c: var(--vybe-primary);
	position: relative; display: inline-grid; place-items: center; flex-shrink: 0;
	width: 64px; height: 64px; border-radius: 20px; color: var(--_c);
	background: color-mix(in srgb, var(--_c) 10%, #fff);
	isolation: isolate; transition: transform .5s var(--vybe-ease), color .3s, background .3s;
}
.vybe-icon-tile::before {
	content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
	background: var(--vybe-grad); opacity: 0; transform: scale(.6) rotate(-20deg);
	transition: opacity .45s var(--vybe-ease), transform .6s var(--vybe-ease);
}
.vybe-icon-tile::after {
	content: ""; position: absolute; inset: -6px; z-index: -2; border-radius: 26px;
	border: 1.5px dashed color-mix(in srgb, var(--_c) 30%, transparent);
	animation: vybe-spin 18s linear infinite; opacity: .8;
}
.vybe-icon-tile .vybe-icon { width: 30px; height: 30px; }
.vybe-icon-tile--lg { width: 84px; height: 84px; border-radius: 26px; }
.vybe-icon-tile--lg .vybe-icon { width: 40px; height: 40px; }
.vybe-icon-tile--sm { width: 44px; height: 44px; border-radius: 14px; }
.vybe-icon-tile--sm::after { display: none; }
.vybe-icon-tile--sm .vybe-icon { width: 22px; height: 22px; }
.vybe-card:hover .vybe-icon-tile, .vybe-icon-tile.is-active { color: #fff; transform: translateY(-4px) rotate(-4deg); }
.vybe-card:hover .vybe-icon-tile::before, .vybe-icon-tile.is-active::before { opacity: 1; transform: scale(1) rotate(0); }
.vybe-icon-tile.is-accent { --_c: var(--vybe-accent); }
.vybe-icon-tile.is-warm { --_c: var(--vybe-warm); }

/* ---------- Cards ---------- */
.vybe-card {
	position: relative; display: flex; flex-direction: column; gap: 14px;
	background: var(--vybe-bg); border: 1px solid var(--vybe-line); border-radius: var(--vybe-radius);
	padding: 28px; box-shadow: var(--vybe-shadow);
	transition: transform .5s var(--vybe-ease), box-shadow .5s var(--vybe-ease), border-color .3s;
}
.vybe-card:hover { transform: translateY(-6px); box-shadow: var(--vybe-shadow-lg); border-color: color-mix(in srgb, var(--vybe-primary) 25%, var(--vybe-line)); }
.vybe-card h3 { margin: 4px 0 0; font-size: 1.2rem; line-height: 1.3; color: var(--vybe-ink); letter-spacing: -.01em; }
.vybe-card h3 a { color: inherit; text-decoration: none; }
.vybe-card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.vybe-card p { margin: 0; color: var(--vybe-muted); line-height: 1.65; }
.vybe-card .vybe-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; position: relative; z-index: 1; }
.vybe-card .vybe-card__foot .vybe-link { position: relative; z-index: 2; }
.vybe-card--glow::before {
	content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; z-index: -1;
	background: var(--vybe-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
	opacity: 0; transition: opacity .4s;
}
.vybe-card--glow:hover::before { opacity: 1; }

.vybe-badge {
	display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
	font-size: .74rem; font-weight: 700; letter-spacing: .02em; line-height: 1.4;
	background: color-mix(in srgb, var(--vybe-primary) 10%, #fff); color: var(--vybe-primary);
}
.vybe-badge--accent { background: color-mix(in srgb, var(--vybe-accent) 14%, #fff); color: color-mix(in srgb, var(--vybe-accent) 80%, #000); }
.vybe-badge--warm { background: color-mix(in srgb, var(--vybe-warm) 15%, #fff); color: color-mix(in srgb, var(--vybe-warm) 75%, #000); }
.vybe-badge--success { background: #e8f8ee; color: #15803d; }
.vybe-badge--danger { background: #fdecec; color: #b91c1c; }
.vybe-badge--muted { background: var(--vybe-soft); color: var(--vybe-muted); }
.vybe-chip { display: inline-block; padding: 3px 10px; font-size: .76rem; border-radius: 8px; background: var(--vybe-soft); color: var(--vybe-text); border: 1px solid var(--vybe-line); }

.vybe-price { font-weight: 800; color: var(--vybe-ink); letter-spacing: -.02em; }
.vybe-price small { font-size: .78em; font-weight: 500; color: var(--vybe-muted); letter-spacing: 0; }
.vybe-price-from { font-size: .85rem; color: var(--vybe-muted); }
.vybe-price-from strong { color: var(--vybe-ink); font-size: 1.1rem; }

.vybe-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; align-content: start; }
.vybe-checklist li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; color: var(--vybe-text); }
.vybe-checklist li .vybe-icon { width: 18px; height: 18px; margin-top: 2px; color: var(--vybe-success); flex-shrink: 0; }

/* ---------- Pricing / package cards ---------- */
.vybe-plans { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.vybe-plan {
	position: relative; display: flex; flex-direction: column; gap: 18px;
	padding: 32px 28px; border-radius: 22px; background: #fff; border: 1px solid var(--vybe-line);
	box-shadow: var(--vybe-shadow); transition: transform .5s var(--vybe-ease), box-shadow .5s var(--vybe-ease);
}
.vybe-plan:hover { transform: translateY(-6px); box-shadow: var(--vybe-shadow-lg); }
.vybe-plan.is-featured { background: radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--vybe-primary-2) 40%, transparent), transparent 60%), var(--vybe-ink); color: #dfe3ff; border-color: transparent; }
.vybe-plan.is-featured h3, .vybe-plan.is-featured .vybe-price { color: #fff; }
.vybe-plan.is-featured .vybe-plan__desc, .vybe-plan.is-featured .vybe-price small, .vybe-plan.is-featured .vybe-plan__meta { color: #aeb5d8; }
.vybe-plan.is-featured .vybe-checklist li { color: #dfe3ff; }
.vybe-plan.is-featured .vybe-checklist li .vybe-icon { color: #5eead4; }
.vybe-plan__ribbon { position: absolute; top: -13px; right: 22px; box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .3); }
.vybe-plan__ribbon .vybe-icon { width: 14px; height: 14px; }
.vybe-plan .vybe-price small, .vybe-licence .vybe-price small { display: block; font-size: .85rem; font-weight: 500; margin-top: 8px; letter-spacing: 0; }
.vybe-plan h3 { margin: 0; font-size: 1.15rem; color: var(--vybe-ink); }
.vybe-plan .vybe-price { font-size: 2.2rem; line-height: 1; }
.vybe-plan__desc { margin: 0; color: var(--vybe-muted); font-size: .95rem; line-height: 1.6; }
.vybe-plan__meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--vybe-muted); }
.vybe-plan__meta span { display: inline-flex; align-items: center; gap: 6px; }
.vybe-plan__meta .vybe-icon { width: 16px; height: 16px; }
.vybe-plan .vybe-checklist { flex: 1; }
.vybe-plan form { margin: 0; }

/* ---------- Tabs ---------- */
.vybe-tabs__list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 32px; padding: 6px; background: var(--vybe-soft); border-radius: 999px; width: fit-content; max-width: 100%; margin-inline: auto; }
.vybe-tabs__list.is-left { margin-inline: 0; }
.vybe-tabs__tab {
	display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 0; border-radius: 999px; cursor: pointer;
	background: transparent; color: var(--vybe-text); font: 600 .92rem var(--vybe-font); transition: background .3s, color .3s, box-shadow .3s;
}
.vybe-tabs__tab .vybe-icon { width: 18px; height: 18px; }
.vybe-tabs__tab[aria-selected="true"] { background: #fff; color: var(--vybe-primary); box-shadow: var(--vybe-shadow); }
.vybe-tabs__panel[hidden] { display: none; }
.vybe-tabs__panel { animation: vybe-fade-up .5s var(--vybe-ease); }
@media (max-width: 640px) { .vybe-tabs__list { border-radius: 18px; } }

/* ---------- Accordion (FAQ) ---------- */
.vybe-faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.vybe-faq details { background: #fff; border: 1px solid var(--vybe-line); border-radius: 14px; padding: 0 22px; transition: box-shadow .3s, border-color .3s; }
.vybe-faq details[open] { box-shadow: var(--vybe-shadow); border-color: color-mix(in srgb, var(--vybe-primary) 25%, var(--vybe-line)); }
.vybe-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-weight: 600; color: var(--vybe-ink); }
.vybe-faq summary::-webkit-details-marker { display: none; }
.vybe-faq summary .vybe-icon { width: 20px; height: 20px; color: var(--vybe-primary); transition: transform .35s var(--vybe-ease); }
.vybe-faq details[open] summary .vybe-icon { transform: rotate(45deg); }
.vybe-faq details > div { padding: 0 0 20px; color: var(--vybe-muted); line-height: 1.7; }

/* ---------- Reveal on scroll ---------- */
.vybe-anim-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--vybe-ease), transform .9s var(--vybe-ease); transition-delay: var(--d, 0ms); }
.vybe-anim-ready [data-reveal="left"] { transform: translateX(-32px); }
.vybe-anim-ready [data-reveal="right"] { transform: translateX(32px); }
.vybe-anim-ready [data-reveal="zoom"] { transform: scale(.94); }
.vybe-anim-ready [data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes vybe-fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Notices & toast ---------- */
.vybe-notice { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: 12px; margin: 0 0 20px; background: var(--vybe-soft); border: 1px solid var(--vybe-line); color: var(--vybe-text); line-height: 1.55; }
.vybe-notice .vybe-icon { width: 20px; height: 20px; margin-top: 1px; }
.vybe-notice--success { background: #ecfbf2; border-color: #bfe9cf; color: #14532d; }
.vybe-notice--error { background: #fef1f1; border-color: #f7caca; color: #7f1d1d; }
.vybe-notice--info { background: color-mix(in srgb, var(--vybe-primary) 6%, #fff); border-color: color-mix(in srgb, var(--vybe-primary) 20%, #fff); }
.vybe-notice ul { margin: 0; padding-left: 18px; }

.vybe-toast {
	position: fixed; left: 50%; bottom: 24px; z-index: 99999; transform: translate(-50%, 140%);
	display: flex; align-items: center; gap: 14px; padding: 14px 16px 14px 18px; max-width: calc(100% - 32px);
	background: var(--vybe-ink); color: #fff; border-radius: 16px; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .35);
	transition: transform .5s var(--vybe-ease); font: 500 .95rem var(--vybe-font);
}
.vybe-toast.is-shown { transform: translate(-50%, 0); }
.vybe-toast .vybe-icon { width: 22px; height: 22px; color: #5eead4; }
.vybe-toast a { color: #fff; font-weight: 700; white-space: nowrap; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Forms ---------- */
.vybe-form { display: grid; gap: 18px; }
.vybe-form .vybe-row { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) { .vybe-form .vybe-row { grid-template-columns: minmax(0, 1fr); } }
.vybe-field { display: grid; gap: 7px; }
.vybe-field label { font-weight: 600; font-size: .9rem; color: var(--vybe-ink); }
.vybe-field label .req { color: var(--vybe-danger); }
.vybe-field input, .vybe-field select, .vybe-field textarea {
	width: 100%; box-sizing: border-box; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--vybe-line);
	background: #fff; color: var(--vybe-ink); font: 400 1rem/1.4 var(--vybe-font); transition: border-color .2s, box-shadow .2s;
}
.vybe-field textarea { min-height: 120px; resize: vertical; }
.vybe-field input:focus, .vybe-field select:focus, .vybe-field textarea:focus { outline: none; border-color: var(--vybe-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--vybe-primary) 14%, transparent); }
.vybe-field.has-error input, .vybe-field.has-error select, .vybe-field.has-error textarea { border-color: var(--vybe-danger); }
.vybe-field .vybe-help { font-size: .82rem; color: var(--vybe-muted); }
.vybe-field .vybe-error { font-size: .82rem; color: var(--vybe-danger); }
.vybe-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.vybe-check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--vybe-text); }
.vybe-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--vybe-primary); }

.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.vybe-anim-ready [data-reveal] { opacity: 1; transform: none; }
	.vybe-anim-ready .vybe-icon svg > * { stroke-dashoffset: 0 !important; }
}

/* ---------- Page hero (inner pages: services, software, shop pages) ---------- */
.vybe-page-hero {
	position: relative; overflow: hidden; isolation: isolate; color: #cfd5f5;
	background: radial-gradient(60% 90% at 85% 0%, color-mix(in srgb, var(--vybe-primary-2) 55%, transparent), transparent 60%),
		radial-gradient(50% 80% at 0% 100%, color-mix(in srgb, var(--vybe-accent) 35%, transparent), transparent 60%), var(--vybe-ink);
	padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 84px);
}
.vybe-page-hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
	background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 44px 44px; -webkit-mask-image: radial-gradient(70% 90% at 50% 0%, #000 30%, transparent 75%); mask-image: radial-gradient(70% 90% at 50% 0%, #000 30%, transparent 75%);
}
.vybe-page-hero h1 { color: #fff; font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 16px; max-width: 18ch; }
.vybe-page-hero p.vybe-page-hero__lead { font-size: 1.15rem; line-height: 1.7; max-width: 640px; margin: 0; color: #b9c0e6; }
.vybe-page-hero .vybe-eyebrow { background: rgba(255, 255, 255, .08); color: #c7bfff; }
.vybe-page-hero__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
.vybe-page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.vybe-page-hero .vybe-icon-tile { --_c: #b8a9ff; background: rgba(255, 255, 255, .07); }
.vybe-page-hero .vybe-icon-tile::after { border-color: rgba(255, 255, 255, .18); }
@media (max-width: 760px) { .vybe-page-hero__row { grid-template-columns: 1fr; } .vybe-page-hero__row > .vybe-icon-tile { display: none; } }
.vybe-crumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 22px; padding: 0; font-size: .86rem; color: #9aa2cc; }
.vybe-crumbs a { color: #d9ddff; text-decoration: none; }
.vybe-crumbs a:hover { color: #fff; }
.vybe-crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.vybe-hero-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, .08); color: #e4e7ff; font-size: .9rem; }
.vybe-hero-chip strong { color: #fff; }

.vybe-section { padding: clamp(56px, 8vw, 104px) 0; }
.vybe-section--soft { background: var(--vybe-soft); }
.vybe-section--tight { padding: clamp(40px, 5vw, 64px) 0; }

/* Process steps */
.vybe-process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(var(--steps, 5), minmax(0, 1fr)); gap: 20px; counter-reset: step; position: relative; }
.vybe-process::before { content: ""; position: absolute; left: 6%; right: 6%; top: 32px; height: 2px; background: linear-gradient(90deg, transparent, var(--vybe-line) 10%, var(--vybe-line) 90%, transparent); }
.vybe-process li { position: relative; text-align: center; display: grid; justify-items: center; align-content: start; gap: 10px; }
.vybe-process li .vybe-icon-tile { background: #fff; box-shadow: var(--vybe-shadow); }
.vybe-process h3 { margin: 6px 0 0; font-size: 1.02rem; color: var(--vybe-ink); }
.vybe-process p { margin: 0; font-size: .92rem; color: var(--vybe-muted); line-height: 1.6; }
.vybe-process__n { position: absolute; top: -6px; right: calc(50% - 44px); width: 24px; height: 24px; border-radius: 50%; background: var(--vybe-grad); color: #fff; font-size: .75rem; font-weight: 700; display: grid; place-items: center; z-index: 1; }
@media (max-width: 900px) { .vybe-process { grid-template-columns: repeat(2, minmax(0, 1fr)); } .vybe-process::before { display: none; } }
@media (max-width: 520px) { .vybe-process { grid-template-columns: 1fr; } }

/* CTA band */
.vybe-cta-band {
	position: relative; overflow: hidden; isolation: isolate; border-radius: 28px; padding: clamp(32px, 5vw, 56px);
	background: var(--vybe-grad); color: #fff; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center;
}
.vybe-cta-band::after { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -180px; border-radius: 50%; background: rgba(255, 255, 255, .12); z-index: -1; animation: vybe-float 8s ease-in-out infinite; }
.vybe-cta-band h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); letter-spacing: -.02em; }
.vybe-cta-band p { margin: 0; color: rgba(255, 255, 255, .88); font-size: 1.05rem; }
.vybe-cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) { .vybe-cta-band { grid-template-columns: 1fr; } }

.vybe-icon-tile--xl { width: 150px; height: 150px; border-radius: 42px; }
.vybe-icon-tile--xl::after { inset: -14px; border-radius: 54px; }
.vybe-icon-tile--xl .vybe-icon { width: 72px; height: 72px; }

/* Long-form content */
.vybe-prose { font-size: 1.06rem; line-height: 1.8; color: var(--vybe-text); }
.vybe-prose > *:first-child { margin-top: 0; }
.vybe-prose h2, .vybe-prose h3 { color: var(--vybe-ink); letter-spacing: -.015em; line-height: 1.25; margin: 1.6em 0 .6em; }
.vybe-prose h2 { font-size: 1.7rem; }
.vybe-prose h3 { font-size: 1.3rem; }
.vybe-prose ul { padding-left: 0; list-style: none; }
.vybe-prose ul li { position: relative; padding-left: 28px; margin: 8px 0; }
.vybe-prose ul li::before { content: ""; position: absolute; left: 4px; top: .6em; width: 10px; height: 10px; border-radius: 3px; background: var(--vybe-grad); transform: rotate(45deg); }
.vybe-prose a { color: var(--vybe-primary); }
.vybe-prose img { border-radius: var(--vybe-radius); height: auto; max-width: 100%; }

/* Consultation block */
.vybe-consult { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.vybe-consult h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); color: var(--vybe-ink); letter-spacing: -.02em; margin: 0 0 12px; line-height: 1.15; }
.vybe-consult .vybe-card:hover { transform: none; }
@media (max-width: 900px) { .vybe-consult { grid-template-columns: 1fr; } }
.vybe-contact-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.vybe-contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--vybe-ink); }
.vybe-contact-list a { color: inherit; text-decoration: none; }
.vybe-contact-list a:hover { color: var(--vybe-primary); }
.vybe-muted { color: var(--vybe-muted); }
.vybe-faq details > div > :first-child { margin-top: 0; }
.vybe-faq details > div > :last-child { margin-bottom: 0; }
