/* ==========================================================================
   VOOOMIE Elite — Design System
   Graphite / Pulse / Copper / Fog — a dual-identity system for a firm
   that ships code AND runs capital. Dark surfaces read as a trading
   terminal; light surfaces read as a design studio. JetBrains Mono is
   reserved for anything that is actually data (prices, stats, code),
   not used decoratively.
   ========================================================================== */

:root {
	--graphite: #12151B;
	--graphite-2: #1B1F29;
	--pulse: #4F5AFF;
	--pulse-deep: #3A44D6;
	--copper: #C77D4B;
	--fog: #F4F5F7;
	--paper: #FFFFFF;
	--slate: #6B7280;
	--line: rgba(18,21,27,0.10);
	--up: #1FAE6D;
	--down: #E5484D;

	--f-display: "Space Grotesk", sans-serif;
	--f-body: "Inter", sans-serif;
	--f-mono: "JetBrains Mono", monospace;

	--container-w: 1240px;
	--gutter: clamp(20px, 4vw, 64px);
	--radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--f-body);
	color: #1F2430;
	background: var(--paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--f-display);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 .5em;
	color: var(--graphite);
}
h1 { font-size: clamp(32px, 4.6vw, 56px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
a { color: var(--pulse); text-decoration: none; }
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
.mono { font-family: var(--f-mono); }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------------- Buttons ---------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 13px 26px; border-radius: 999px; font-family: var(--f-body);
	font-weight: 600; font-size: 15px; cursor: pointer; border: 2px solid transparent;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-pulse { background: var(--pulse); color: #fff; }
.btn-pulse:hover { background: var(--pulse-deep); color: #fff; }
.btn-outline { background: transparent; border-color: var(--graphite); color: var(--graphite); }
.btn-outline:hover { border-color: var(--pulse); color: var(--pulse); }

/* ---------------- Signature signal glyph ---------------- */
.vx-signal-glyph { color: var(--pulse); vertical-align: middle; margin-right: 6px; }

/* ---------------- Top bar ---------------- */
.vx-topbar { background: var(--graphite); color: rgba(244,245,247,.8); font-size: 13px; }
.vx-topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.vx-topbar-contact a { color: rgba(244,245,247,.85); margin-left: 16px; }

/* ---------------- Header ---------------- */
.vx-header { position: relative; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.vx-header.is-transparent { position: absolute; top: 38px; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
.vx-header.is-transparent.scrolled-solid { position: fixed; top: 0; background: var(--paper); border-bottom-color: var(--line); }
.vx-header.is-sticky.is-solid { position: sticky; top: 0; }
.vx-header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.vx-logo-text { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: .01em; color: var(--graphite); }
.vx-header.is-transparent:not(.scrolled-solid) .vx-logo-text { color: var(--fog); }
.vx-nav-list { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.vx-nav-list a { font-weight: 500; color: var(--graphite); }
.vx-header-cta { display: flex; align-items: center; gap: 16px; }
.vx-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.vx-mobile-toggle span { width: 22px; height: 2px; background: var(--graphite); border-radius: 2px; }
.vx-mobile-drawer { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--paper); z-index: 200; padding: 28px; transition: right .3s ease; box-shadow: -8px 0 30px rgba(0,0,0,.15); }
.vx-mobile-drawer.is-open { right: 0; }
.vx-mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 28px; cursor: pointer; }
.vx-mobile-nav-list { list-style: none; padding: 0; margin-top: 50px; display: flex; flex-direction: column; gap: 18px; }

/* Animations */
.anim-float .vx-logo { animation: vxFloat 4s ease-in-out infinite; }
.anim-pulse .vx-logo { animation: vxPulse 2.4s ease-in-out infinite; }
.anim-sway .vx-logo { animation: vxSway 5s ease-in-out infinite; }
@keyframes vxFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-4px);} }
@keyframes vxPulse { 0%,100%{opacity:1;} 50%{opacity:.7;} }
@keyframes vxSway { 0%,100%{transform:rotate(0);} 50%{transform:rotate(-2deg);} }
@media (prefers-reduced-motion: reduce) { .anim-float .vx-logo, .anim-pulse .vx-logo, .anim-sway .vx-logo { animation: none; } }

/* ---------------- Page Header ---------------- */
.vx-page-header { position: relative; min-height: 440px; display: flex; align-items: flex-end; background-color: var(--graphite); background-size: cover; background-position: center; }
.vx-page-header-overlay { position: absolute; inset: 0; }
.vx-page-header-content { position: relative; z-index: 2; padding: 60px 0; color: #fff; }
.vx-page-header-heading { color: #fff; }
.vx-page-header-desc { color: rgba(255,255,255,.8); max-width: 640px; }
.vx-page-header-breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.vx-page-header-breadcrumb a { color: rgba(255,255,255,.75); }
.vx-page-header-buttons { display: flex; gap: 14px; margin-top: 20px; }
.vx-ph-btn-outline { border-color: #fff; color: #fff; }

/* ---------------- Grids & Cards ---------------- */
.vx-grid { display: grid; gap: 28px; margin: 30px 0; }
.vx-grid-2 { grid-template-columns: repeat(2, 1fr); }
.vx-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vx-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .vx-grid-3, .vx-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .vx-grid-2, .vx-grid-3, .vx-grid-4 { grid-template-columns: 1fr; } }

.vx-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.vx-card:hover { box-shadow: 0 18px 40px rgba(18,21,27,.08); transform: translateY(-3px); }
.vx-card-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vx-service-card, .vx-ea-card-body, .vx-case-study-card-body { padding: 26px; }
.vx-service-icon { font-size: 26px; color: var(--pulse); }
.vx-card-meta { font-size: 13px; color: var(--slate); display: flex; gap: 14px; margin: 10px 0; }
.vx-card-link { font-weight: 600; }
.vx-tag { display: inline-block; font-size: 12px; background: var(--fog); color: var(--graphite); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }

.vx-ea-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.vx-verified-badge { background: var(--up); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.vx-ea-stat-row { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; margin: 14px 0; }
.vx-ea-stat-row > div { text-align: center; }
.vx-ea-stat-row-large { padding: 22px 0; }
.vx-stat-number { display: block; font-size: 22px; font-weight: 600; color: var(--graphite); }
.vx-stat-label { display: block; font-size: 12px; color: var(--slate); margin-top: 2px; }
.vx-up { color: var(--up) !important; }
.vx-down { color: var(--down) !important; }
.vx-card-btn { width: 100%; }

.vx-metric-row { display: flex; gap: 30px; margin: 14px 0; }
.vx-metric-row-hero { justify-content: center; gap: 60px; background: var(--fog); padding: 40px 0; margin: 0 0 40px; }
.vx-metric-row-hero .vx-stat-number { font-size: 34px; }

.vx-team-card { text-align: center; padding: 20px; }
.vx-portrait img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.vx-team-role { color: var(--slate); font-size: 14px; }
.vx-team-links a { margin: 0 6px; font-size: 13px; }

.vx-blog-card-body { padding: 22px; }

/* ---------------- Single layouts ---------------- */
.vx-main { padding: 60px 0; }
.vx-single-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 860px) { .vx-single-layout { grid-template-columns: 1fr; } }
.vx-sidebar-card { background: var(--fog); border-radius: var(--radius); padding: 26px; position: sticky; top: 110px; }
.vx-sidebar-price { font-size: 24px; font-weight: 700; color: var(--graphite); margin-bottom: 12px; }
.vx-checklist { list-style: none; padding: 0; }
.vx-checklist li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.vx-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--up); font-weight: 700; }
.vx-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.vx-pill { background: var(--fog); padding: 5px 12px; border-radius: 999px; font-size: 13px; }
.vx-verified-link { display: inline-block; margin-bottom: 20px; font-weight: 600; color: var(--up); }

/* ---------------- Forms ---------------- */
.vx-form-row { margin-bottom: 14px; }
.vx-form-row-split { display: flex; gap: 12px; }
.vx-form-row input, .vx-form-row textarea, .vx-calc-inputs input {
	width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--f-body); font-size: 15px;
}
.vx-form-status { font-size: 14px; margin-top: 10px; }
.vx-form-status.success { color: var(--up); }
.vx-form-status.error { color: var(--down); }

/* ---------------- Risk disclaimer ---------------- */
.vx-risk-disclaimer { font-size: 12.5px; color: var(--slate); line-height: 1.6; }
.vx-risk-compact { font-size: 11.5px; margin-top: 14px; }
.vx-footer-risk { border-top: 1px solid rgba(244,245,247,.12); padding: 22px 0; }
.vx-footer-risk .vx-risk-disclaimer { color: rgba(244,245,247,.55); }

/* ---------------- Comparison table ---------------- */
.vx-comparison-table-wrap { overflow-x: auto; margin: 24px 0; }
.vx-comparison-table { width: 100%; border-collapse: collapse; }
.vx-comparison-table th, .vx-comparison-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: center; }
.vx-comparison-table th { font-family: var(--f-display); background: var(--fog); }
.vx-row-label { text-align: left !important; font-weight: 600; color: var(--slate); }

/* ---------------- Track record ---------------- */
.vx-track-record { display: flex; justify-content: space-around; text-align: center; background: var(--graphite); color: #fff; border-radius: var(--radius); padding: 40px 20px; margin: 30px 0 6px; }
.vx-track-record .vx-stat-number { color: #fff; font-size: 32px; }
.vx-track-record .vx-stat-label { color: rgba(244,245,247,.65); }
@media (max-width: 700px) { .vx-track-record { flex-wrap: wrap; gap: 24px; } }

/* ---------------- Compounding calculator ---------------- */
.vx-calc { background: var(--fog); border-radius: var(--radius); padding: 30px; }
.vx-calc-inputs { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 16px; align-items: end; }
.vx-calc-inputs label { font-size: 13px; font-weight: 600; color: var(--slate); }
.vx-calc-checkbox { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.vx-calc-result { display: flex; gap: 40px; margin: 24px 0; }
.vx-calc-result-label { display: block; font-size: 13px; color: var(--slate); }
.vx-calc-result-value { display: block; font-size: 28px; font-weight: 700; color: var(--graphite); }
.vx-calc-chart { width: 100%; height: auto; background: var(--paper); border-radius: 10px; }
.vx-calc-note { font-size: 13px; color: var(--slate); }
@media (max-width: 700px) { .vx-calc-inputs { grid-template-columns: 1fr; } }

/* ---------------- Project estimator ---------------- */
.vx-estimator { background: var(--fog); border-radius: var(--radius); padding: 34px; max-width: 640px; }
.vx-estimator-progress { height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; margin-bottom: 26px; }
.vx-estimator-progress span { display: block; height: 100%; background: var(--pulse); transition: width .3s ease; }
.vx-estimator-options { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.vx-estimator-option { padding: 12px 18px; border-radius: 10px; border: 2px solid var(--line); background: var(--paper); cursor: pointer; font-weight: 600; transition: border-color .15s ease, background .15s ease; }
.vx-estimator-option:hover { border-color: var(--pulse); }
.vx-estimator-option.is-selected { border-color: var(--pulse); background: var(--pulse); color: #fff; }
.vx-estimator-range { font-size: 30px; display: block; margin-bottom: 10px; color: var(--graphite); }
.vx-estimator-result { text-align: center; margin-bottom: 24px; }

/* ---------------- Testimonials ---------------- */
.vx-testimonial-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.vx-testimonial-slide { scroll-snap-align: start; min-width: 320px; background: var(--fog); border-radius: var(--radius); padding: 28px; }
.vx-testimonial-quote { font-style: italic; }
.vx-testimonial-author { font-weight: 600; color: var(--graphite); }

/* ---------------- Trusted by ---------------- */
.vx-trusted-by-slider { display: flex; gap: 40px; align-items: center; overflow-x: auto; padding: 20px 0; opacity: .7; }
.vx-trusted-by-logo img { max-height: 40px; width: auto; filter: grayscale(1); }

/* ---------------- Page loader ---------------- */
#vx-loader { position: fixed; inset: 0; z-index: 999999; display: flex; align-items: center; justify-content: center; transition: opacity .4s ease, visibility .4s ease; }
#vx-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.vx-loader-inner { text-align: center; color: #fff; }
.vx-loader-inner .vx-signal-glyph { display: block; margin: 0 auto 14px; width: 80px; height: 20px; }
.vx-loader-text { font-family: var(--f-mono); font-size: 13px; letter-spacing: .04em; }

/* ---------------- Chat buttons ---------------- */
.vx-chat-buttons { position: fixed; bottom: 26px; left: 26px; display: flex; flex-direction: column; gap: 12px; z-index: 500; }
.vx-chat-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.18); transition: transform .2s ease; }
.vx-chat-btn:hover { transform: scale(1.08); }
.vx-whatsapp { background: #25D366; }
.vx-telegram { background: #229ED9; }

/* ---------------- Back to top ---------------- */
#vx-back-to-top { position: fixed; bottom: 26px; right: 26px; width: 52px; height: 52px; border-radius: 50%; background: var(--vx-btt-bg, var(--graphite)); color: #fff; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 500; }
#vx-back-to-top.is-visible { display: flex; }
.vx-btt-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.vx-btt-ring circle { fill: none; stroke: var(--vx-btt-accent, var(--pulse)); stroke-width: 3; stroke-dasharray: 126; stroke-dashoffset: 126; }

/* ---------------- Cookie bar ---------------- */
#vx-cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--graphite); color: #fff; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding: 18px var(--gutter); z-index: 600; transform: translateY(100%); transition: transform .4s ease; }
#vx-cookie-bar.is-visible { transform: translateY(0); }
#vx-cookie-bar p { margin: 0; font-size: 14px; max-width: 700px; color: rgba(244,245,247,.85); }

/* ---------------- Footer ---------------- */
.vx-footer { background: var(--graphite); color: rgba(244,245,247,.85); padding-top: 70px; }
.vx-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 900px) { .vx-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vx-footer-grid { grid-template-columns: 1fr; } }
.vx-footer h4 { color: #fff; font-size: 16px; }
.vx-footer-menu, .vx-footer-bottom-menu { list-style: none; padding: 0; }
.vx-footer-menu li, .vx-social-links a { display: block; margin-bottom: 8px; }
.vx-social-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 14px; }
.vx-footer-bottom { border-top: 1px solid rgba(244,245,247,.1); padding: 20px 0; margin-top: 10px; }
.vx-footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.vx-footer-bottom-menu { display: flex; gap: 18px; }

/* ---------------- Breadcrumb ---------------- */
.vx-page-header-breadcrumb .sep { margin: 0 6px; }

/* ---------------- 404 ---------------- */
.vx-404 { text-align: center; padding: 120px 0; }
.vx-404 h1 { font-size: 96px; }
