/* Venusian Tech — Public CSS
   ----------------------------------------------------------------
   Cosmic-twilight palette: indigo + warm gold + parchment cream,
   set in Fraunces (serif display) + Inter (UI).
   ----------------------------------------------------------------
   1.  Fonts & resets
   2.  Design tokens
   3.  Base typography & layout primitives
   4.  Buttons
   5.  Brand wordmark
   6.  Navigation
   7.  Hero
   8.  Sections, intros, CTAs
   9.  Cards (products grid)
   10. About prose & bullets
   11. Contact page (form + aside)
   12. Footer
   13. Utilities
   14. Responsive
   ---------------------------------------------------------------- */

/* 1. Fonts & resets ---------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,30..70;1,9..144,300..900,30..70&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--vt-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

/* 2. Design tokens ----------------------------------------------- */
:root {
	--vt-primary:        #2D3260;        /* cosmic indigo */
	--vt-primary-dark:   #1A1F45;        /* deep indigo */
	--vt-primary-soft:   #E5E2EE;        /* pale lavender */
	--vt-cream:          #F4EEE0;        /* warm golden parchment */
	--vt-cream-deep:     #EAE2D0;        /* slightly darker parchment */
	--vt-charcoal:       #0F0F0F;
	--vt-charcoal-800:   #1A1A1A;
	--vt-ink:            #262531;        /* cool dark indigo-grey */
	--vt-gray-50:        #f9fafb;
	--vt-gray-100:       #f3f4f6;
	--vt-gray-200:       #e5e7eb;
	--vt-gray-300:       #d1d5db;
	--vt-gray-400:       #9ca3af;
	--vt-gray-500:       #6b7280;
	--vt-gray-600:       #4b5563;
	--vt-gray-700:       #374151;
	--vt-gray-900:       #111827;
	--vt-red:            #dc2626;
	--vt-green:          #16a34a;
	--vt-accent:         #D4A85A;        /* warm gold — Venusian sky highlight */
	--vt-line:           rgba(45, 50, 96, .12);   /* primary @ 12% — borders/rules */
	--vt-line-soft:      rgba(45, 50, 96, .08);   /* primary @ 8%  — subtle borders */
	--vt-font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--vt-font-serif:     'Fraunces', 'Iowan Old Style', 'Times New Roman', Times, serif;
	--vt-radius:         10px;
	--vt-radius-lg:      16px;
	--vt-shadow-sm:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
	--vt-shadow:         0 4px 12px rgba(30,30,60,.08), 0 2px 4px rgba(30,30,60,.04);
	--vt-shadow-lg:      0 20px 40px rgba(30,30,60,.14), 0 8px 16px rgba(30,30,60,.06);
	--vt-container:      1120px;
	--vt-container-narrow: 760px;
}

/* 3. Base typography & layout primitives ------------------------- */
body {
	margin: 0;
	font-family: var(--vt-font);
	font-size: 17px;
	line-height: 1.6;
	color: var(--vt-ink);
	background: var(--vt-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--vt-primary);
	text-decoration: none;
	transition: color .15s ease;
}
a:hover { color: var(--vt-primary-dark); text-decoration: underline; }

::selection { background: var(--vt-primary); color: var(--vt-cream); }

.vt-skip {
	position: absolute;
	left: -9999px;
	top: -9999px;
	background: var(--vt-charcoal);
	color: var(--vt-cream);
	padding: 8px 14px;
	border-radius: var(--vt-radius);
}
.vt-skip:focus { left: 12px; top: 12px; }

.vt-container {
	width: 100%;
	max-width: var(--vt-container);
	margin-inline: auto;
	padding-inline: 24px;
}
.vt-container--narrow { max-width: var(--vt-container-narrow); }

.vt-section {
	padding-block: 96px;
	position: relative;
}
.vt-section--head     { padding-block: 120px 64px; }
.vt-section--soft     { background: var(--vt-cream-deep); }
.vt-section--cta      { padding-block: 80px; }
.vt-section--center   { text-align: center; }

.vt-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--vt-primary-dark);
	margin: 0 0 16px;
}

.vt-display {
	font-family: var(--vt-font-serif);
	font-weight: 500;
	font-size: clamp(40px, 6vw, 76px);
	line-height: 1.05;
	letter-spacing: -.02em;
	color: var(--vt-charcoal);
	margin: 0 0 24px;
	font-variation-settings: 'opsz' 96, 'SOFT' 50;
}
.vt-display__accent {
	font-style: italic;
	color: var(--vt-primary);
	font-weight: 400;
}

.vt-headline {
	font-family: var(--vt-font-serif);
	font-weight: 500;
	font-size: clamp(28px, 3.8vw, 44px);
	line-height: 1.15;
	letter-spacing: -.015em;
	color: var(--vt-charcoal);
	margin: 0 0 20px;
	font-variation-settings: 'opsz' 72, 'SOFT' 50;
}
.vt-headline--sm     { font-size: clamp(22px, 2.4vw, 28px); }
.vt-headline--center { text-align: center; }

.vt-lede {
	font-size: clamp(18px, 1.6vw, 21px);
	line-height: 1.55;
	color: var(--vt-gray-700);
	max-width: 60ch;
	margin: 0 0 32px;
}

.vt-prose-lede {
	font-size: clamp(17px, 1.4vw, 19px);
	color: var(--vt-gray-700);
	line-height: 1.7;
	max-width: 64ch;
	margin: 0 0 24px;
}
.vt-prose-lede--center { margin-inline: auto; text-align: center; }

.vt-prose p { margin: 0 0 18px; max-width: 68ch; }
.vt-prose h2 { margin-top: 56px; }
.vt-prose h2:first-child { margin-top: 0; }
.vt-prose strong { color: var(--vt-charcoal); font-weight: 600; }

/* 4. Buttons ----------------------------------------------------- */
.vt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: var(--vt-radius);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: .005em;
	text-decoration: none !important;
	border: 1px solid transparent;
	transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
	white-space: nowrap;
	user-select: none;
}
.vt-btn--sm  { padding: 9px 16px; font-size: 14px; }
.vt-btn--primary {
	background: var(--vt-charcoal);
	color: var(--vt-cream);
	box-shadow: var(--vt-shadow-sm);
}
.vt-btn--primary:hover {
	background: var(--vt-primary-dark);
	color: var(--vt-cream);
	transform: translateY(-1px);
	box-shadow: var(--vt-shadow);
}
.vt-btn--ghost {
	background: transparent;
	color: var(--vt-charcoal);
	border-color: var(--vt-charcoal);
}
.vt-btn--ghost:hover {
	background: var(--vt-charcoal);
	color: var(--vt-cream);
}
.vt-btn[disabled],
.vt-btn[aria-disabled="true"] {
	opacity: .55;
	cursor: not-allowed;
	pointer-events: none;
}

/* 5. Brand wordmark ---------------------------------------------- */
.vt-brand {
	display: inline-flex;
	align-items: baseline;
	color: var(--vt-charcoal);
	text-decoration: none;
	font-family: var(--vt-font-serif);
	font-size: 24px;
	line-height: 1;
	letter-spacing: -.012em;
}
.vt-brand:hover { color: var(--vt-charcoal); text-decoration: none; }
.vt-brand__word {
	display: inline-flex;
	gap: .28em;
	align-items: baseline;
}
.vt-brand__venusian,
.vt-brand__tech {
	font-style: italic;
	font-weight: 500;
	color: var(--vt-primary);
	font-variation-settings: 'opsz' 96, 'SOFT' 50;
	font-family: var(--vt-font-serif);
}

/* 6. Navigation -------------------------------------------------- */
.vt-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(250, 246, 238, .85);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid rgba(45, 50, 96, .12);
}
.vt-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 72px;
}
.vt-nav__drawer {
	display: flex;
	align-items: center;
	gap: 32px;
}
.vt-nav__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
}
.vt-nav__links a {
	color: var(--vt-ink);
	font-size: 15px;
	font-weight: 500;
	padding: 6px 2px;
	border-bottom: 2px solid transparent;
	transition: color .15s ease, border-color .15s ease;
	text-decoration: none;
}
.vt-nav__links a:hover,
.vt-nav__links a.is-active {
	color: var(--vt-primary-dark);
	border-bottom-color: var(--vt-primary);
}
.vt-nav__actions { display: flex; align-items: center; gap: 12px; }

.vt-nav__burger {
	display: none;
	background: transparent;
	border: 0;
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: var(--vt-radius);
	color: var(--vt-charcoal);
}
.vt-nav__burger:hover { background: rgba(45, 50, 96, .08); }
.vt-nav__burger-bar {
	display: block;
	height: 2px;
	width: 100%;
	background: currentColor;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.vt-nav__burger-bar + .vt-nav__burger-bar { margin-top: 5px; }
.vt-nav__burger[aria-expanded="true"] .vt-nav__burger-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.vt-nav__burger[aria-expanded="true"] .vt-nav__burger-bar:nth-child(2) { opacity: 0; }
.vt-nav__burger[aria-expanded="true"] .vt-nav__burger-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* 7. Hero -------------------------------------------------------- */
.vt-hero {
	position: relative;
	overflow: hidden;
	padding: 120px 0 100px;
}
.vt-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.vt-hero__orb {
	position: absolute;
	inset: -20% -20% auto auto;
	width: 720px;
	height: 720px;
	border-radius: 50%;
	pointer-events: none;
	background:
		radial-gradient(circle at 30% 30%, rgba(212, 168, 90, .55), transparent 55%),   /* warm gold sun */
		radial-gradient(circle at 70% 60%, rgba(220, 175, 195, .38), transparent 60%),  /* dusty mauve twilight */
		radial-gradient(circle at 50% 50%, rgba(45, 50, 96, .22), transparent 70%);     /* indigo wash */
	filter: blur(40px);
	opacity: .9;
	z-index: 0;
	animation: vt-orb-drift 18s ease-in-out infinite alternate;
}
@keyframes vt-orb-drift {
	0%   { transform: translate(0, 0) scale(1); }
	100% { transform: translate(-3%, 4%) scale(1.05); }
}
.vt-hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 36px;
}

/* 8. Sections, intros, CTAs ------------------------------------- */
.vt-intro { max-width: 760px; }
.vt-section__head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.vt-cta { text-align: center; }
.vt-cta__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 28px;
	flex-wrap: wrap;
}

/* 9. Cards (products grid) -------------------------------------- */
.vt-cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vt-cards--detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.vt-cards--detailed .vt-card--live { grid-column: 1 / -1; }
.vt-cards--detailed .vt-card--live .vt-card__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 0;
}

.vt-card {
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border-radius: var(--vt-radius-lg);
	padding: 28px 28px 32px;
	box-shadow: var(--vt-shadow);
	border: 1px solid rgba(45, 50, 96, .08);
	color: inherit;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	position: relative;
	min-height: 260px;
}
.vt-card--feature { padding: 36px 36px 40px; min-height: 360px; }

.vt-card--live:hover {
	transform: translateY(-4px);
	box-shadow: var(--vt-shadow-lg);
	border-color: rgba(45, 50, 96, .25);
}
.vt-card--soon {
	background: transparent;
	border: 1.5px dashed rgba(45, 50, 96, .35);
	box-shadow: none;
	cursor: not-allowed;
}
.vt-card--soon .vt-card__title { color: var(--vt-gray-400); }
.vt-card--soon .vt-card__sub,
.vt-card--soon .vt-card__body { color: var(--vt-gray-500); }

.vt-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.vt-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--vt-gray-100);
	color: var(--vt-gray-600);
}
.vt-card__badge--live {
	background: rgba(22, 163, 74, .12);
	color: #15803D;
}
.vt-card__badge--live::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vt-green);
	box-shadow: 0 0 0 3px rgba(22, 163, 74, .2);
}
.vt-card__arrow {
	font-size: 22px;
	color: var(--vt-primary);
	transition: transform .2s ease;
}
.vt-card--live:hover .vt-card__arrow { transform: translate(2px, -2px); }

.vt-card__title {
	font-family: var(--vt-font-serif);
	font-weight: 500;
	font-size: 28px;
	line-height: 1.1;
	color: var(--vt-charcoal);
	margin: 0 0 8px;
	font-variation-settings: 'opsz' 60, 'SOFT' 40;
}
.vt-card__title--lg { font-size: 38px; }
.vt-card__sub {
	font-size: 15px;
	font-weight: 500;
	color: var(--vt-primary-dark);
	margin: 0 0 16px;
}
.vt-card__body {
	font-size: 15px;
	line-height: 1.6;
	color: var(--vt-gray-700);
	margin: 0 0 20px;
	flex: 1;
}
.vt-card__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	font-size: 14.5px;
	color: var(--vt-gray-700);
}
.vt-card__features li {
	padding: 6px 0 6px 22px;
	position: relative;
}
.vt-card__features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--vt-primary);
	opacity: .65;
}
.vt-card__cta {
	font-size: 14px;
	font-weight: 600;
	color: var(--vt-primary-dark);
	margin-top: auto;
	letter-spacing: .01em;
}
.vt-card__cta::after {
	content: ' \2192';
	transition: transform .2s ease;
	display: inline-block;
}
.vt-card--live:hover .vt-card__cta::after { transform: translateX(3px); }

/* 10. About prose & bullets ------------------------------------- */
.vt-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: grid;
	gap: 18px;
}
.vt-bullets li {
	padding: 18px 22px 18px 56px;
	background: #FFFFFF;
	border-radius: var(--vt-radius);
	box-shadow: var(--vt-shadow-sm);
	border: 1px solid rgba(45, 50, 96, .1);
	position: relative;
	font-size: 16px;
	line-height: 1.6;
}
.vt-bullets li::before {
	content: '';
	position: absolute;
	left: 22px;
	top: 24px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, var(--vt-accent) 0%, var(--vt-primary) 65%, var(--vt-primary-dark) 100%);
	box-shadow: inset 0 -1px 2px rgba(0,0,0,.18);
}

/* 11. Contact page (form + aside) ------------------------------- */
.vt-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}
.vt-contact__form-wrap {
	background: #FFFFFF;
	padding: 36px;
	border-radius: var(--vt-radius-lg);
	box-shadow: var(--vt-shadow);
	border: 1px solid rgba(45, 50, 96, .1);
}
.vt-form__row { margin-bottom: 20px; }
.vt-form__row--actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
	flex-wrap: wrap;
}
.vt-form__label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--vt-charcoal);
	margin-bottom: 8px;
}
.vt-form__hint {
	font-weight: 400;
	color: var(--vt-gray-500);
	font-size: 13px;
}
.vt-form__input,
.vt-form__textarea {
	width: 100%;
	padding: 12px 14px;
	font: inherit;
	font-size: 16px;
	color: var(--vt-charcoal);
	background: var(--vt-cream);
	border: 1.5px solid var(--vt-gray-200);
	border-radius: var(--vt-radius);
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.vt-form__input:focus,
.vt-form__textarea:focus {
	outline: none;
	border-color: var(--vt-primary);
	background: #FFFFFF;
	box-shadow: 0 0 0 4px rgba(45, 50, 96, .12);
}
.vt-form__textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.vt-form__honey {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.vt-form__notice {
	font-size: 13px;
	color: var(--vt-gray-500);
	margin: 0;
	max-width: 32ch;
	line-height: 1.5;
}
.vt-form__status {
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: var(--vt-radius);
	font-size: 14.5px;
	display: none;
}
.vt-form__status.is-success {
	display: block;
	background: rgba(22, 163, 74, .08);
	color: #15803D;
	border: 1px solid rgba(22, 163, 74, .25);
}
.vt-form__status.is-error {
	display: block;
	background: rgba(220, 38, 38, .06);
	color: var(--vt-red);
	border: 1px solid rgba(220, 38, 38, .2);
}

.vt-contact__aside {
	padding: 8px 0;
}
.vt-contact__details {
	margin: 24px 0 0;
}
.vt-contact__details dt {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--vt-primary-dark);
	margin-top: 24px;
}
.vt-contact__details dt:first-of-type { margin-top: 0; }
.vt-contact__details dd {
	margin: 6px 0 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--vt-ink);
}

/* 12. Footer ----------------------------------------------------- */
.vt-footer {
	background: var(--vt-charcoal);
	color: rgba(250, 246, 238, .82);
	padding-top: 80px;
	margin-top: 64px;
}
.vt-footer .vt-brand           { color: var(--vt-accent); }
.vt-footer .vt-brand__venusian,
.vt-footer .vt-brand__tech     { color: var(--vt-accent); }

.vt-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
	gap: 48px;
	padding-bottom: 56px;
}
.vt-footer__tagline {
	margin: 18px 0 0;
	font-size: 15px;
	color: rgba(250, 246, 238, .65);
	max-width: 28ch;
	line-height: 1.55;
}
.vt-footer__cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px;
}
.vt-footer__col--wide { grid-column: span 1; }
.vt-footer__heading {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--vt-primary-soft);
	margin: 0 0 18px;
}
.vt-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}
.vt-footer__list a {
	color: rgba(250, 246, 238, .82);
	font-size: 15px;
	text-decoration: none;
}
.vt-footer__list a:hover { color: var(--vt-cream); text-decoration: underline; }
.vt-footer__address {
	font-style: normal;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(250, 246, 238, .82);
}
.vt-footer__address a { color: var(--vt-primary-soft); }
.vt-footer__address a:hover { color: var(--vt-cream); }

.vt-footer__rule {
	height: 1px;
	background: rgba(250, 246, 238, .1);
	margin: 0;
}
.vt-footer__base {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-block: 24px 32px;
	font-size: 13.5px;
	color: rgba(250, 246, 238, .55);
	flex-wrap: wrap;
}
.vt-footer__base p { margin: 0; }

/* 13. Utilities -------------------------------------------------- */
.vt-only-mobile  { display: none; }
.vt-only-desktop { display: block; }

/* 14. Responsive ------------------------------------------------- */
@media (max-width: 960px) {
	.vt-cards               { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vt-cards--detailed     { grid-template-columns: 1fr; }
	.vt-contact             { grid-template-columns: 1fr; gap: 40px; }
	.vt-footer__inner       { grid-template-columns: 1fr; gap: 40px; }
	.vt-footer__cols        { gap: 28px; }
}

@media (max-width: 720px) {
	.vt-section            { padding-block: 64px; }
	.vt-section--head      { padding-block: 80px 40px; }
	.vt-hero               { padding: 80px 0 64px; }
	.vt-hero__orb          { width: 480px; height: 480px; inset: -10% -30% auto auto; }
	.vt-cards              { grid-template-columns: 1fr; }
	.vt-footer__cols       { grid-template-columns: 1fr; gap: 32px; }
	.vt-footer__base       { justify-content: flex-start; }
	.vt-form__row--actions { flex-direction: column; align-items: flex-start; }
	.vt-form__notice       { max-width: 100%; }

	.vt-nav__burger { display: inline-flex; flex-direction: column; gap: 0; align-items: stretch; }
	.vt-nav__drawer {
		position: fixed;
		inset: 72px 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--vt-cream);
		border-bottom: 1px solid rgba(45, 50, 96, .15);
		padding: 16px 24px 28px;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition: transform .2s ease, opacity .2s ease;
		box-shadow: var(--vt-shadow);
	}
	.vt-nav__drawer.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.vt-nav__links {
		flex-direction: column;
		gap: 4px;
		padding: 8px 0;
	}
	.vt-nav__links a {
		display: block;
		padding: 12px 4px;
		border-bottom: 1px solid rgba(45, 50, 96, .08);
	}
	.vt-nav__links a:hover,
	.vt-nav__links a.is-active {
		border-bottom-color: rgba(45, 50, 96, .08);
		background: rgba(45, 50, 96, .05);
	}
	.vt-nav__actions {
		margin-top: 14px;
		justify-content: stretch;
	}
	.vt-nav__actions .vt-btn { width: 100%; }

	.vt-only-mobile  { display: block; }
	.vt-only-desktop { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.vt-hero__orb,
	.vt-card,
	.vt-btn,
	.vt-nav__drawer,
	.vt-nav__burger-bar { transition: none !important; animation: none !important; }
}
