/* ==========================================================================
   Axiomatics Nexus — main stylesheet
   --brand / --navy are set from Customizer (functions.php inline CSS).
   ========================================================================== */

:root {
	--brand: #2448ff;
	--brand-2: #8b3dff;
	--brand-3: #00d4ff;
	--grad: linear-gradient(115deg, var(--brand) 0%, var(--brand-2) 55%, var(--brand-3) 100%);
	--grad-soft: linear-gradient(135deg, color-mix(in srgb, var(--brand) 14%, #fff), color-mix(in srgb, var(--brand-2) 12%, #fff));
	--glow: 0 14px 40px -12px color-mix(in srgb, var(--brand-2) 70%, transparent);
	--navy: #0b1640;
	--ink: #0a0f24;
	--ink-2: #353d5c;
	--muted: #646c88;
	--line: #e2e5f3;
	--paper: #f4f5ff;
	--white: #fff;
	--dark-bg: #050818;
	--dark-2: #0d1236;
	--dark-line: rgba(160, 170, 255, .12);
	--dark-muted: #a3aacb;
	--cyan: var(--brand-3);
	--ok: #2fd08a;
	--radius: 20px;
	--radius-sm: 12px;
	--wrap: 1280px;
	--gutter: clamp(16px, 4vw, 40px);
	--f-sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--ease: cubic-bezier(.2, .7, .1, 1);
	--header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
	margin: 0;
	font-family: var(--f-sans);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -.03em; line-height: 1.05; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; }
.mono { font-family: var(--f-mono); letter-spacing: 0; }
.h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -.02em; line-height: 1.2; font-weight: 500; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 8px; }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: calc(800px + var(--gutter) * 2); }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section--tight { padding: 56px 0 96px; }

.dark { background: var(--dark-bg); color: #fff; }
.dark .muted, .dark p { color: var(--dark-muted); }

/* ---------- Buttons ---------- */
.btn {
	--bg: var(--ink); --fg: #fff;
	position: relative; display: inline-flex; align-items: center; gap: 10px;
	padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
	background: var(--bg); color: var(--fg); font-weight: 500; font-size: 15px; line-height: 1;
	overflow: hidden; isolation: isolate; white-space: nowrap;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn::before {
	content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
	background: rgba(255, 255, 255, .18); transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--bg) 70%, transparent); }
.btn .icon { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--brand { --bg: var(--brand); --fg: #fff; }
.btn--dark { --bg: var(--ink); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--light::before { background: rgba(10, 20, 51, .08); }
.btn--ghost { --bg: transparent; --fg: currentColor; border-color: currentColor; border-color: rgba(127, 137, 160, .45); }
.btn--ghost::before { background: rgba(127, 137, 160, .15); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.link-arrow .icon { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover .icon { transform: translate(3px, -3px); }
.link-arrow:hover { color: var(--brand); }

/* ---------- Eyebrows, chips ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 22px; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 22%, transparent); }
.eyebrow--pill { padding: 7px 14px 7px 11px; border: 1px solid var(--dark-line); border-radius: 999px; background: rgba(255, 255, 255, .04); color: #d5dbeb; }
.chip { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }
.dark .chip { border-color: var(--dark-line); color: var(--dark-muted); }
.ico-badge { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: color-mix(in srgb, var(--brand) 10%, #fff); color: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent); }
.ico-badge .icon { width: 22px; height: 22px; }
.ico-badge--dark { background: rgba(255, 255, 255, .05); border-color: var(--dark-line); color: var(--brand); }

/* ---------- Section heads ---------- */
.sec-head { max-width: 760px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-title { font-size: clamp(38px, 5.4vw, 72px); }
.sec-title em, .hero__title em, .page-hero__title em, .cta__title em, .big-statement em { color: var(--brand); }
.sec-text { margin-top: 22px; font-size: 19px; color: var(--muted); max-width: 560px; }
.sec-head--center .sec-text { margin-inline: auto; }
.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: clamp(48px, 6vw, 80px); flex-wrap: wrap; }
.split-head__side { max-width: 360px; display: grid; gap: 22px; justify-items: start; color: var(--muted); }
.dark .split-head__side p { color: var(--dark-muted); }
.line-mask { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; }
.line-mask > span { display: inline-block; will-change: transform; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); display: flex; align-items: center; transition: transform .5s var(--ease), background .4s, box-shadow .4s; color: #fff; }
.site-header.is-scrolled { background: rgba(7, 13, 34, .72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 1px 0 var(--dark-line); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__img { max-height: 36px; width: auto; }
.brand__word { font-size: 26px; font-weight: 600; letter-spacing: -.04em; }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__list a { display: block; padding: 9px 14px; border-radius: 999px; font-size: 15px; color: rgba(255, 255, 255, .78); transition: color .25s, background .25s; }
.nav__list a:hover, .nav__list .current-menu-item > a, .nav__list .current_page_item > a { color: #fff; background: rgba(255, 255, 255, .08); }
.nav__list .sub-menu { display: none; }
.nav__mobile-cta { display: none; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.news-pill { display: none; align-items: center; gap: 8px; font-size: 13px; padding: 6px 12px 6px 6px; border-radius: 999px; border: 1px solid var(--dark-line); color: #d5dbeb; transition: border-color .3s; }
.news-pill b { background: var(--brand); color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.news-pill .icon { width: 14px; height: 14px; }
.news-pill:hover { border-color: var(--brand); }
.site-header .btn--dark { --bg: #fff; --fg: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--dark-line); background: transparent; position: relative; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: #fff; transition: transform .4s var(--ease), top .4s var(--ease); }
.nav-toggle span:first-child { top: 18px; } .nav-toggle span:last-child { top: 25px; }
.nav-open .nav-toggle span:first-child { top: 21.5px; transform: rotate(45deg); }
.nav-open .nav-toggle span:last-child { top: 21.5px; transform: rotate(-45deg); }
@media (min-width: 1280px) { .news-pill { display: inline-flex; } }
body.admin-bar .site-header { top: 32px; }

/* Light header variant (inner light pages don't exist; all heroes are dark) */

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + 48px) 0 40px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
	position: absolute; inset: -2px;
	background-image: linear-gradient(var(--dark-line) 1px, transparent 1px), linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 70% at 65% 45%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 65% 45%, #000 20%, transparent 75%);
}
.hero__glow { position: absolute; width: 900px; height: 900px; right: -200px; top: -150px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--brand) 28%, transparent), transparent 60%); filter: blur(20px); opacity: .55; }
.hero__glow::after { content: ""; position: absolute; width: 700px; height: 700px; left: -500px; top: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(69, 110, 255, .35), transparent 60%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.02fr 1fr; gap: 40px; align-items: center; }
.hero__title { font-size: clamp(42px, 5.4vw, 84px); letter-spacing: -.045em; line-height: .98; font-weight: 500; }
.hero__text { margin-top: 28px; font-size: clamp(17px, 1.5vw, 20px); color: var(--dark-muted); max-width: 520px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero__ctas .btn--ghost { color: #fff; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.hero__tags li { font-family: var(--f-mono); font-size: 12px; padding: 6px 12px; border-radius: 8px; border: 1px dashed rgba(255, 255, 255, .18); color: #c5cde2; }
.hero__stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--dark-line); }
.hero__stat { padding: 24px 24px 0 0; display: grid; gap: 4px; }
.hero__stat + .hero__stat { padding-left: 24px; border-left: 1px solid var(--dark-line); }
.hero__stat strong { font-size: clamp(28px, 3vw, 40px); font-weight: 500; letter-spacing: -.03em; }
.hero__stat > span { font-size: 14px; color: var(--dark-muted); }

/* ---------- Hero 3D visual ---------- */
.hv { position: relative; aspect-ratio: 1 / .92; width: 100%; max-width: 640px; margin-left: auto; perspective: 1400px; }
.hv__scene { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }
.hv__plane { position: absolute; left: 50%; top: 54%; width: 94%; aspect-ratio: 1; transform: translate(-50%, -50%) rotateX(62deg); transform-style: preserve-3d; }
.hv__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14); }
.hv__ring--1 { box-shadow: 0 0 80px -20px color-mix(in srgb, var(--brand) 55%, transparent) inset; }
.hv__ring--2 { inset: 17%; border-style: dashed; border-color: rgba(255, 255, 255, .16); }
.hv__ring--3 { inset: 34%; border-color: color-mix(in srgb, var(--brand) 55%, transparent); background: radial-gradient(circle, color-mix(in srgb, var(--brand) 20%, transparent), transparent 70%); }
.hv__sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 300deg, color-mix(in srgb, var(--brand) 38%, transparent) 355deg, transparent 360deg); animation: hv-spin 7s linear infinite; mask: radial-gradient(circle, transparent 33%, #000 34%); -webkit-mask: radial-gradient(circle, transparent 33%, #000 34%); }
@keyframes hv-spin { to { transform: rotate(360deg); } }
.hv__links { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hv__links line { stroke: rgba(255, 255, 255, .16); stroke-width: 1; }
.hv__links .pk { fill: var(--brand); filter: drop-shadow(0 0 6px var(--brand)); }
.hv__links .pk--in { fill: var(--cyan); filter: drop-shadow(0 0 6px var(--cyan)); }
.hv__core { position: absolute; left: 50%; top: 50%; width: 27%; aspect-ratio: 1; transform: translate(-50%, -50%); display: grid; place-items: center; z-index: 5; }
.hv__core-disc {
	position: relative; width: 100%; height: 100%; border-radius: 50%; display: grid; place-items: center;
	background: radial-gradient(circle at 35% 30%, #2a3a6e, var(--navy) 60%, #050a1c);
	border: 1px solid rgba(255, 255, 255, .18);
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8), 0 0 0 10px rgba(255, 255, 255, .03), 0 0 80px -10px color-mix(in srgb, var(--brand) 60%, transparent), inset 0 2px 0 rgba(255, 255, 255, .15);
}
.core__icon { width: 52%; height: auto; object-fit: contain; }
.core__letter { font-size: clamp(44px, 5vw, 72px); font-weight: 600; letter-spacing: -.06em; line-height: 1; color: #fff; }
.core__letter::after { content: ""; display: inline-block; width: .16em; height: .16em; margin-left: .04em; border-radius: 50%; background: var(--brand); }
.hv__core-label { position: absolute; bottom: -34px; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #fff; padding: 5px 10px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 85%, #000); white-space: nowrap; }
.hv__pulse { position: absolute; inset: 0; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--brand) 70%, transparent); animation: hv-pulse 3s var(--ease) infinite; }
.hv__pulse--2 { animation-delay: 1.5s; }
@keyframes hv-pulse { from { transform: scale(1); opacity: .9; } to { transform: scale(2.1); opacity: 0; } }
.hv__node { position: absolute; left: 0; top: 0; display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: 999px; background: rgba(15, 24, 54, .78); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .7); white-space: nowrap; will-change: transform; transform: translate(-50%, -50%); }
.hv__node-ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(145deg, #1f2c57, #0b1330); color: #fff; border: 1px solid rgba(255, 255, 255, .12); }
.hv__node-ico .icon { width: 18px; height: 18px; }
.hv__node-lbl { font-size: 13px; font-weight: 500; }
.hv__node.is-hit { border-color: var(--brand); }
.hv__node.is-hit .hv__node-ico { background: var(--brand); }
.hv__toast { position: absolute; left: 50%; bottom: 2%; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; background: rgba(5, 10, 28, .85); border: 1px solid var(--dark-line); font-size: 12px; white-space: nowrap; z-index: 6; }
.hv__toast code { font-family: var(--f-mono); color: #d7deef; }
.hv__toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.hv__toast.is-deny .hv__toast-dot { background: #ff4d5e; box-shadow: 0 0 10px #ff4d5e; }
/* static fallback positions (before JS / reduced motion) */
.hv__node[data-i="0"] { left: 12%; top: 30%; } .hv__node[data-i="1"] { left: 50%; top: 10%; } .hv__node[data-i="2"] { left: 88%; top: 30%; }
.hv__node[data-i="3"] { left: 88%; top: 74%; } .hv__node[data-i="4"] { left: 50%; top: 88%; } .hv__node[data-i="5"] { left: 12%; top: 74%; }
.js-hv .hv__node { left: 0; top: 0; }

/* ---------- Trusted ---------- */
.trusted { background: var(--dark-bg); color: #fff; padding: 0 0 40px; }
.trusted__inner { display: flex; align-items: center; gap: 40px; border-top: 1px solid var(--dark-line); padding-top: 32px; }
.trusted__label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--dark-muted); flex: none; max-width: 150px; }
.marquee { overflow: hidden; flex: 1; min-width: 0; width: 100%; max-width: 100%;mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; color: rgba(255, 255, 255, .55); white-space: nowrap; transition: color .3s; }
.marquee__item:hover { color: #fff; }
.marquee__item .icon { color: var(--brand); opacity: .8; }
@keyframes marquee { to { transform: translateX(-50%); } }
body:not(.home) .trusted { background: var(--paper); color: var(--ink); padding: 48px 0; }
body:not(.home) .trusted__inner { border: 0; padding: 0; }
body:not(.home) .marquee__item { color: var(--ink-2); }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.why__lead { position: sticky; top: calc(var(--header-h) + 40px); }
.big-statement { font-size: clamp(30px, 3.6vw, 50px); line-height: 1.12; letter-spacing: -.03em; margin-bottom: 36px; }
.big-statement .muted { color: #a4abbd; }
.big-statement .w { display: inline-block; }
.why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card { position: relative; padding: 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); display: grid; gap: 14px; align-content: start; min-height: 260px; transition: background .4s, border-color .4s, box-shadow .4s; transform-style: preserve-3d; }
.mini-card:nth-child(even) { margin-top: 40px; margin-bottom: -40px; }
.mini-card:hover { background: #fff; border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); box-shadow: 0 30px 60px -30px rgba(10, 20, 51, .3); }
.mini-card__n { position: absolute; top: 24px; right: 24px; font-size: 12px; color: var(--muted); }
.mini-card h3 { font-size: 22px; margin-top: auto; padding-top: 30px; }
.mini-card p { color: var(--muted); font-size: 15px; }

/* ---------- Platform bento ---------- */
.platform { overflow: hidden; }
.platform__lines { position: absolute; inset: 0; pointer-events: none; display: flex; justify-content: space-around; }
.platform__lines span { width: 1px; height: 100%; background: linear-gradient(transparent, var(--dark-line), transparent); position: relative; overflow: hidden; }
.platform__lines span::after { content: ""; position: absolute; left: 0; width: 1px; height: 140px; background: linear-gradient(transparent, var(--brand), transparent); animation: line-fall 6s linear infinite; }
.platform__lines span:nth-child(2)::after { animation-delay: 2s; } .platform__lines span:nth-child(3)::after { animation-delay: 4s; }
@keyframes line-fall { from { top: -140px; } to { top: 100%; } }
.bento { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento__card { position: relative; border-radius: var(--radius); padding: 28px; min-height: 290px; display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)); border: 1px solid var(--dark-line); overflow: hidden; }
.bento__card--feature { grid-row: span 2; background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 16%, transparent), rgba(255, 255, 255, .02) 60%); }
.bento__top { display: flex; justify-content: space-between; align-items: center; }
.bento__n { font-size: 44px; font-family: var(--f-sans); font-weight: 300; letter-spacing: -.04em; color: rgba(255, 255, 255, .2); }
.bento__body { margin-top: auto; display: grid; gap: 12px; padding-top: 28px; }
.bento__body h3 { font-size: 26px; color: #fff; }
.bento__body p { font-size: 15px; max-width: 340px; }
.bento__art { margin: 32px 0 0; }
.decision { display: grid; gap: 8px; padding: 18px; border-radius: 14px; background: rgba(0, 0, 0, .3); border: 1px solid var(--dark-line); }
.decision code { font-family: var(--f-mono); font-size: 12.5px; color: #cbd4ea; padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, .04); border-left: 2px solid var(--cyan); }
.decision__out { justify-self: start; margin-top: 6px; font-family: var(--f-mono); font-size: 13px; padding: 7px 14px; border-radius: 999px; background: color-mix(in srgb, var(--ok) 18%, transparent); color: var(--ok); border: 1px solid color-mix(in srgb, var(--ok) 45%, transparent); }
.glow-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--brand) 18%, transparent), transparent 45%); }
.glow-card:hover::before { opacity: 1; }
.glow-card:hover { border-color: rgba(255, 255, 255, .18); }

/* ---------- Solutions ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.sol-card { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 36px 32px 40px; min-height: 320px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; overflow: hidden; transition: background .4s; }
.sol-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--brand) 9%, transparent), transparent 55%); }
.sol-card:hover::after { opacity: 1; }
.sol-card__n { font-size: 12px; color: var(--muted); align-self: flex-end; }
.sol-card__ico { width: 64px; height: 64px; display: grid; place-items: center; margin: 16px 0 28px; color: var(--ink); border-radius: 18px; background: var(--paper); transition: background .4s, color .4s, transform .5s var(--ease); }
.sol-card__ico .icon { width: 30px; height: 30px; }
.sol-card:hover .sol-card__ico { background: var(--brand); color: #fff; transform: rotate(-8deg) scale(1.05); }
.sol-card h3 { font-size: 24px; transition: color .3s; }
.sol-card:hover h3 { color: var(--brand); }
.sol-card p { color: var(--muted); font-size: 15px; max-width: 300px; }
.sol-card__go { position: absolute; left: 32px; bottom: 32px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; opacity: 0; transform: translateY(10px); transition: all .4s var(--ease); }
.sol-card__go .icon { width: 16px; height: 16px; }
a.sol-card { padding-bottom: 90px; }
a.sol-card:hover .sol-card__go { opacity: 1; transform: none; }
.sol-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- How it works ---------- */
.how { background: var(--paper); }
.flow { position: relative; margin-top: 80px; }
.flow__line { position: absolute; left: 12.5%; right: 12.5%; top: 32px; width: 75%; height: 4px; }
.flow__track { stroke: var(--line); stroke-width: 4; stroke-dasharray: 6 8; }
.flow__fill { stroke: var(--brand); stroke-width: 4; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.flow__steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.flow__step { text-align: center; display: grid; justify-items: center; gap: 10px; padding: 0 8px; }
.flow__dot { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(10, 20, 51, .25); transition: background .4s, color .4s, border-color .4s, transform .4s var(--ease); }
.flow__dot .icon { width: 26px; height: 26px; }
.flow__step.is-on .flow__dot { background: var(--brand); color: #fff; border-color: var(--brand); transform: scale(1.06); }
.flow__n { margin-top: 12px; font-size: 12px; color: var(--muted); }
.flow__step h3 { font-size: 24px; }
.flow__step p { font-size: 15px; color: var(--muted); max-width: 230px; }
.terminal { margin: 72px auto 0; max-width: 860px; border-radius: 16px; background: #0a1026; color: #d7deef; box-shadow: 0 40px 80px -40px rgba(10, 20, 51, .6); overflow: hidden; border: 1px solid #1d2748; }
.terminal__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid #1d2748; }
.terminal__bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a3458; }
.terminal__bar i:first-child { background: #ff5f57; } .terminal__bar i:nth-child(2) { background: #febc2e; } .terminal__bar i:nth-child(3) { background: #28c840; }
.terminal__bar span { margin-left: 10px; font-size: 12px; color: #7d88a8; }
.terminal pre { margin: 0; padding: 22px 24px; font-size: 13.5px; line-height: 1.75; overflow-x: auto; white-space: pre; }
.t-mute { color: #7d88a8; } .t-str { color: #ffb38a; } .t-ok { color: var(--ok); font-weight: 600; }

/* ---------- Industries horizontal ---------- */
.industries { overflow: hidden; padding-bottom: clamp(80px, 9vw, 120px); }
.industries__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
.h-scroll { overflow: hidden; }
.h-scroll__track { display: flex; gap: 20px; padding: 0 var(--gutter); padding-left: max(var(--gutter), calc((100vw - var(--wrap)) / 2)); width: max-content; will-change: transform; }
.ind-card { width: clamp(290px, 30vw, 420px); flex: none; border-radius: var(--radius); overflow: hidden; background: var(--dark-2); border: 1px solid var(--dark-line); display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .4s; }
.ind-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--brand) 50%, transparent); }
.ind-card__art { aspect-ratio: 16 / 10; overflow: hidden; }
.ind-card__art .art { width: 100%; height: 100%; transition: transform .8s var(--ease); }
.ind-card:hover .art { transform: scale(1.06); }
.ind-card__body { padding: 26px 28px 30px; display: grid; gap: 12px; }
.ind-card__body h3, .ind-card__body h2 { font-size: 24px; }
.ind-card__body p { font-size: 15px; }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card--light { width: auto; background: #fff; border-color: var(--line); }
.ind-card--light p { color: var(--muted); }

/* ---------- Art (SVG visuals) ---------- */
.art__bg { fill: #0b1330; }
.art__grid { stroke: rgba(255, 255, 255, .06); stroke-width: 1; }
.art__ln { stroke: rgba(255, 255, 255, .18); stroke-width: 1; stroke-dasharray: 3 4; }
.art__nd { fill: var(--cyan); }
.art__ring { fill: rgba(10, 20, 51, .85); stroke: color-mix(in srgb, var(--brand) 70%, transparent); stroke-width: 1.2; }
.art__ring--2 { fill: none; stroke: rgba(255, 255, 255, .14); stroke-dasharray: 2 5; }
.art__icon { color: #fff; }
.art__icon path, .art__icon circle, .art__icon rect, .art__icon ellipse, .art__icon line { fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Benefits ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 72px; }
.stat-card { padding: 32px 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; }
.stat-card__v { font-size: clamp(48px, 5vw, 76px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.stat-card__v span { color: var(--ink); }
.stat-card:first-child { background: var(--brand); color: #fff; border-color: var(--brand); }
.stat-card:first-child .stat-card__v span, .stat-card:first-child .stat-card__l { color: #fff; }
.stat-card__l { color: var(--muted); font-size: 15px; max-width: 180px; }
.benefit-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.benefit-row li { display: flex; gap: 16px; align-items: flex-start; }
.benefit-row h3 { font-size: 19px; margin-bottom: 4px; letter-spacing: -.01em; }
.benefit-row p { font-size: 15px; color: var(--muted); }

/* ---------- Cases ---------- */
.cases { background: var(--paper); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s; }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(10, 20, 51, .45); }
.case-card__art { aspect-ratio: 16 / 10; overflow: hidden; }
.case-card__art .art { width: 100%; height: 100%; transform: scale(1.12); }
.case-card__body { padding: 26px 28px 30px; display: grid; gap: 16px; }
.case-card__body .chip { justify-self: start; }
.case-card h3 { font-size: 22px; line-height: 1.2; }
.case-card__result { display: inline-flex; gap: 8px; align-items: center; color: var(--brand); font-weight: 500; font-size: 15px; }

/* ---------- Resources ---------- */
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.res-card { display: grid; gap: 14px; align-content: start; }
.res-card__art { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.res-card__art .art { width: 100%; height: 100%; transition: transform .8s var(--ease); }
.res-card:hover .art { transform: scale(1.06); }
.res-card__type { display: inline-flex; gap: 8px; align-items: center; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); }
.res-card__type .icon { width: 16px; height: 16px; }
.res-card h3, .res-card h2 { font-size: 20px; line-height: 1.25; transition: color .3s; }
.res-card:hover h3, .res-card:hover h2 { color: var(--brand); }
.res-card.is-hidden { display: none; }
.blog-strip { margin-top: 80px; }
.blog-strip__title { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 400; margin-bottom: 12px; }
.blog-strip li a { display: grid; grid-template-columns: 140px 1fr auto; gap: 24px; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); font-size: clamp(18px, 2vw, 24px); letter-spacing: -.02em; transition: padding .4s var(--ease), color .3s; }
.blog-strip li:last-child a { border-bottom: 1px solid var(--line); }
.blog-strip time { font-size: 13px; color: var(--muted); letter-spacing: 0; }
.blog-strip li a:hover { padding-left: 16px; color: var(--brand); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-bar__btn { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 14px; transition: all .3s; }
.filter-bar__btn.is-active, .filter-bar__btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- CTA ---------- */
.cta-wrap { padding: 0 0 clamp(80px, 9vw, 120px); }
.how + .industries, .cases + .resources { margin-top: 0; }
.cta { position: relative; overflow: hidden; border-radius: 32px; padding: clamp(56px, 9vw, 120px) clamp(24px, 6vw, 96px); text-align: center; isolation: isolate; }
.cta__grid { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(var(--dark-line) 1px, transparent 1px), linear-gradient(90deg, var(--dark-line) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, #000, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 70%); }
.cta__orb { position: absolute; z-index: -1; width: 620px; height: 620px; left: 50%; top: 100%; transform: translate(-50%, -40%); border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--brand) 60%, transparent), transparent 62%); filter: blur(10px); }
.cta__title { font-size: clamp(38px, 6vw, 84px); max-width: 900px; margin: 0 auto; letter-spacing: -.045em; }
.cta__text { margin: 24px auto 0; font-size: 19px; max-width: 520px; }
.cta__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.cta .btn--ghost { color: #fff; }
.section + .cta-wrap, .how + .cta-wrap { padding-top: 0; }
.cases + .cta-wrap, .how + .cta-wrap, .trusted + .cta-wrap { background: var(--paper); }
body:not(.home) .cases + .cta-wrap { background: var(--paper); }

/* ---------- Page hero ---------- */
.page-hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + clamp(56px, 8vw, 110px)) 0 clamp(64px, 8vw, 110px); }
.page-hero__inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.page-hero__title { font-size: clamp(42px, 6.4vw, 92px); letter-spacing: -.045em; line-height: 1; }
.single__title { font-size: clamp(36px, 5vw, 64px); letter-spacing: -.04em; line-height: 1.05; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--dark-muted); margin-bottom: 28px; font-family: var(--f-mono); }
.crumbs a:hover { color: #fff; }
.orbit { position: relative; width: min(100%, 360px); aspect-ratio: 1; margin-left: auto; }
.orbit__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--dark-line); animation: hv-spin 30s linear infinite; }
.orbit__ring::before { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 14px var(--brand); }
.orbit__ring--2 { inset: 22%; border-style: dashed; animation-duration: 18s; animation-direction: reverse; }
.orbit__core { position: absolute; inset: 36%; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, #2a3a6e, var(--navy)); border: 1px solid rgba(255, 255, 255, .15); box-shadow: 0 0 60px -10px color-mix(in srgb, var(--brand) 70%, transparent); color: #fff; }
.orbit__core .icon { width: 40%; height: 40%; }
.orbit__sat { position: absolute; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(15, 24, 54, .9); border: 1px solid var(--dark-line); color: #fff; animation: float 6s ease-in-out infinite; }
.orbit__sat .icon { width: 22px; height: 22px; }
.orbit__sat--0 { top: 4%; left: 12%; } .orbit__sat--1 { top: 10%; right: 4%; animation-delay: -1.5s; }
.orbit__sat--2 { bottom: 8%; right: 12%; animation-delay: -3s; } .orbit__sat--3 { bottom: 14%; left: 0; animation-delay: -4.5s; }
@keyframes float { 50% { transform: translateY(-12px); } }

/* ---------- Inner page blocks ---------- */
.arch { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.arch__item { position: relative; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); display: grid; gap: 12px; }
.arch__item h3 { font-size: 20px; margin-top: 18px; }
.arch__item p { color: var(--muted); font-size: 15px; }
.arch__abbr { position: absolute; top: 26px; right: 26px; font-size: 13px; color: var(--brand); }
.sol-detail { display: grid; gap: clamp(64px, 9vw, 120px); }
.sol-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.sol-row--rev .sol-row__art { order: 2; }
.sol-row__art { border-radius: 24px; overflow: hidden; aspect-ratio: 5 / 4; }
.sol-row__art .art { width: 100%; height: 100%; }
.sol-row__copy { display: grid; gap: 20px; justify-items: start; }
.sol-row__copy h2 { font-size: clamp(32px, 4vw, 52px); }
.sol-row__copy > p { font-size: 19px; color: var(--muted); }
.ticks { display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: center; }
.ticks .icon { color: var(--brand); width: 20px; height: 20px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.timeline__item { padding: 28px 24px 32px; border-top: 2px solid var(--brand); background: var(--paper); border-radius: 0 0 var(--radius) var(--radius); display: grid; gap: 14px; }
.timeline__year { font-size: 40px; font-weight: 400; letter-spacing: -.04em; }
.timeline__item p { color: var(--muted); }
.partner-cta { margin-top: 48px; padding: 40px; border-radius: var(--radius); background: var(--paper); display: grid; grid-template-columns: 1fr auto; gap: 8px 32px; align-items: center; }
.partner-cta .btn { grid-row: 1 / 3; grid-column: 2; }
.partner-cta p { color: var(--muted); }

/* Forms */
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.form-aside { display: grid; gap: 28px; justify-items: start; position: sticky; top: calc(var(--header-h) + 32px); }
.form-card { padding: clamp(24px, 4vw, 48px); border-radius: 24px; border: 1px solid var(--line); background: #fff; box-shadow: 0 40px 80px -50px rgba(10, 20, 51, .4); }
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; font-size: 14px; font-weight: 500; }
.field input, .field select, .field textarea { font: inherit; font-weight: 400; font-size: 16px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); transition: border-color .3s, box-shadow .3s, background .3s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent); }
.form .btn { justify-self: start; }
.form__legal { font-size: 13px; color: var(--muted); }
.form__note { display: flex; gap: 10px; align-items: center; padding: 14px 16px; border-radius: 12px; font-size: 15px; }
.form__note--ok { background: color-mix(in srgb, var(--ok) 12%, #fff); color: #147a4f; }
.form__note--err { background: #fff0f1; color: #b4232f; }
.hp { position: absolute; left: -9999px; }
.contact-list { display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 10px; align-items: center; }
.contact-list .icon { color: var(--brand); }
.contact-list--lg { font-size: 18px; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { display: flex; flex-direction: column; gap: 20px; }
.post-card__media { border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 10; display: block; }
.post-card__media img, .post-card__media .art { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img, .post-card:hover .post-card__media .art { transform: scale(1.05); }
.post-card__body { display: grid; gap: 12px; justify-items: start; }
.post-card__body > p:not(.post-card__meta) { color: var(--muted); font-size: 15px; }
.post-card__meta { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.dark .post-card__meta { color: var(--dark-muted); margin-bottom: 20px; }
.post-card h2 a:hover { color: var(--brand); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; }
.pagination .page-numbers { min-width: 44px; height: 44px; padding: 0 12px; display: grid; place-items: center; border-radius: 999px; border: 1px solid var(--line); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.single__head { position: relative; overflow: hidden; padding: calc(var(--header-h) + 72px) 0 72px; }
.single__head .wrap { position: relative; }
.single__media { margin-top: 48px; }
.single__media img { border-radius: 20px; width: 100%; }
.single__foot { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tags a { display: inline-block; margin: 0 6px 6px 0; padding: 6px 12px; border-radius: 999px; background: var(--paper); font-size: 13px; }
.prose { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: 34px; margin-top: 1.8em; color: var(--ink); }
.prose h3 { font-size: 24px; margin-top: 1.6em; color: var(--ink); }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ol { list-style: decimal; padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: 16px; }
.prose blockquote { margin: 1.6em 0; padding: 8px 0 8px 24px; border-left: 3px solid var(--brand); font-size: 22px; color: var(--ink); }
.empty { text-align: center; display: grid; gap: 16px; justify-items: center; }
.search-form { display: flex; gap: 8px; }
.search-form input[type=search] { padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line); font: inherit; }
.search-form input[type=submit] { padding: 12px 20px; border-radius: 999px; border: 0; background: var(--ink); color: #fff; font: inherit; cursor: pointer; }
.notfound { min-height: 80vh; display: flex; align-items: center; }
.notfound .wrap { position: relative; }
.notfound__code { color: var(--brand); margin-bottom: 20px; }
.comment-list { margin-top: 32px; }
.fullwidth-content { padding-top: var(--header-h); }
.axio-elementor .site-main > .elementor { padding-top: 0; }

/* ---------- Footer ---------- */
.site-footer { padding: 96px 0 32px; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1fr 2.2fr; gap: 64px; }
.footer-brand { display: grid; gap: 22px; align-content: start; max-width: 300px; }
.footer-brand .brand__word { font-size: 32px; }
.footer-brand p { font-size: 15px; }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--dark-line); color: #fff; transition: background .3s, border-color .3s; }
.social a:hover { background: var(--brand); border-color: var(--brand); }
.social .icon { width: 18px; height: 18px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-cols h3 { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--dark-muted); font-weight: 400; margin-bottom: 18px; }
.footer-cols ul { display: grid; gap: 10px; }
.footer-cols a { font-size: 15px; color: #dfe4f1; transition: color .25s; }
.footer-cols a:hover { color: var(--brand); }
.footer-cols .contact-list li { font-size: 14px; color: #dfe4f1; align-items: flex-start; }
.footer-mega { font-size: clamp(64px, 17vw, 260px); font-weight: 600; letter-spacing: -.06em; line-height: .8; margin: 72px 0 32px; background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 85%); -webkit-background-clip: text; background-clip: text; color: transparent; text-align: center; user-select: none; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--dark-line); font-size: 14px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Dropdown menus ---------- */
@media (min-width: 1101px) {
	.nav__list > li { position: relative; }
	.nav__list > .menu-item-has-children > a { display: flex; align-items: center; gap: 6px; }
	.nav__list > .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .7; }
	.nav__list .sub-menu { display: grid; gap: 2px; position: absolute; top: calc(100% + 10px); left: 50%; min-width: 260px; padding: 10px; border-radius: 16px; background: rgba(10, 18, 44, .96); border: 1px solid var(--dark-line); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .25s, transform .3s var(--ease), visibility .25s; }
	.nav__list .sub-menu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
	.nav__list li:hover > .sub-menu, .nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
	.nav__list .sub-menu a { border-radius: 10px; padding: 10px 14px; font-size: 14.5px; white-space: nowrap; }
	.nav__list .sub-menu a:hover { background: rgba(255, 255, 255, .07); color: #fff; }
}
@media (max-width: 1100px) {
	.nav { overflow-y: auto; justify-content: flex-start; }
	.nav__list .sub-menu { display: grid; padding: 0 0 8px 2px; }
	.nav__list .sub-menu a { font-size: 17px !important; letter-spacing: 0 !important; padding: 5px 0 !important; color: var(--dark-muted) !important; }
}

/* ---------- Grid variants / extras ---------- */
.sol-grid.cols-2, .arch.cols-2 { grid-template-columns: repeat(2, 1fr); }
.sol-grid.cols-3, .arch.cols-3 { grid-template-columns: repeat(3, 1fr); }
.sol-grid.cols-4, .arch.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-sec--boxes .arch { margin-top: 0; }
a.arch__item { transition: border-color .3s, background .3s; }
a.arch__item:hover { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); background: #fff; }
.grid-sec + .grid-sec, .section + .section.grid-sec--boxes { padding-top: 0; }
.trusted--light, body .trusted--light { background: var(--paper); color: var(--ink); padding: 48px 0; }
.trusted--light .trusted__inner { border: 0; padding: 0; }
.trusted--light .marquee__item { color: var(--ink-2); }
.trusted--light .trusted__label { color: var(--muted); }
.hero__inner--solo { grid-template-columns: 1fr; max-width: 900px; }
.h2-sm { font-size: clamp(28px, 3vw, 40px); }
.form-aside__text { color: var(--muted); }
a.ind-card { color: #fff; }

/* ---------- Wordmark (until a logo image is uploaded) ---------- */
.brand__word { display: inline-grid; font-size: 24px; font-weight: 500; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.brand__word b { color: var(--brand); font-weight: 700; }
.brand__word small { font-size: 8.5px; letter-spacing: .22em; font-weight: 500; margin-top: 6px; color: var(--dark-muted); text-align: center; }
.footer-brand .brand__word { font-size: 30px; }

/* ---------- Flow with any number of steps ---------- */
.flow__steps { grid-template-columns: repeat(var(--n, 4), 1fr); }
.flow__line { left: calc(50% / var(--n, 4)); right: auto; width: calc(100% - 100% / var(--n, 4)); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq__list { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 16px; background: var(--paper); transition: background .3s, border-color .3s; }
.faq__item[open] { background: #fff; border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); box-shadow: 0 24px 50px -30px rgba(10, 20, 51, .35); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; font-size: 19px; font-weight: 500; letter-spacing: -.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); }
.faq__item summary i::before, .faq__item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: #fff; transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.faq__item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] summary i { background: var(--brand); }
.faq__item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq__item p { padding: 0 24px 24px; color: var(--muted); }
.footer-cols--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Elementor ---------- */
.elementor .axio-el-section > .elementor-container { max-width: none; }
.elementor .axio-el-section .elementor-widget-wrap { padding: 0 !important; }
.elementor .axio-el-section .elementor-widget:not(:last-child) { margin-bottom: 0; }
.elementor-widget[class*="elementor-widget-axio-"] { margin-bottom: 0 !important; }
.elementor-widget[class*="elementor-widget-axio-"] > .elementor-widget-container { margin: 0; padding: 0; }
.elementor-edit-area .site-main { padding: 0; }
.elementor-editor-active [data-reveal], .elementor-editor-active .hero-in, .elementor-editor-active .split-w { opacity: 1 !important; transform: none !important; }
.elementor-editor-active .industries__pin { transform: none !important; }
.elementor-editor-active .h-scroll { overflow-x: auto; }

/* ---------- Reveal defaults (only hidden when JS is ready) ---------- */
.js-anim [data-reveal] { opacity: 0; transform: translateY(40px); }
.js-anim .hero-in { opacity: 0; transform: translateY(24px); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.nav, .site-header__actions .btn { display: none; }
	.nav-toggle { display: block; }
	.site-header__actions { margin-left: auto; }
	.nav { display: flex; flex-direction: column; justify-content: center; position: fixed; inset: 0; background: var(--dark-bg); padding: 100px var(--gutter) 40px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; z-index: -1; }
	.nav-open .nav { opacity: 1; visibility: visible; }
	.nav-open .site-header { background: transparent; box-shadow: none; }
	.nav__list { flex-direction: column; gap: 0; }
	.nav__list a { font-size: clamp(30px, 8vw, 44px); letter-spacing: -.03em; padding: 8px 0; color: #fff; background: none !important; border-radius: 0; }
	.nav__mobile-cta { display: inline-flex; align-self: flex-start; margin-top: 32px; }
	.hero__inner, .page-hero__inner { grid-template-columns: 1fr; }
	.hv { margin: 24px auto 0; max-width: 560px; }
	.page-hero__visual { display: none; }
	.why__grid { grid-template-columns: 1fr; }
	.why__lead { position: static; }
	.bento { grid-template-columns: 1fr 1fr; }
	.bento__card--feature { grid-row: auto; grid-column: span 2; }
	.sol-grid, .sol-grid--3, .sol-grid.cols-3, .sol-grid.cols-4, .arch.cols-3, .arch.cols-4 { grid-template-columns: 1fr 1fr; }
	.res-grid, .stats-grid, .benefit-row, .arch, .timeline { grid-template-columns: 1fr 1fr; }
	.case-grid, .ind-grid, .post-grid { grid-template-columns: 1fr 1fr; }
	.footer-top { grid-template-columns: 1fr; }
	.form-layout, .faq__grid { grid-template-columns: 1fr; }
	.flow__steps { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
	.flow__line { display: none; }
	.form-aside { position: static; }
}
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
@media (max-width: 720px) {
	body { font-size: 16px; }
	:root { --header-h: 66px; }
	.hero { min-height: auto; }
	.hero__stats { grid-template-columns: 1fr 1fr; }
	.hero__stat:nth-child(3) { padding-left: 0; border-left: 0; }
	.hv__node { padding: 5px 10px 5px 5px; gap: 6px; }
	.hv__node-ico { width: 26px; height: 26px; } .hv__node-ico .icon { width: 14px; height: 14px; }
	.hv__node-lbl { font-size: 11px; }
	.hv__toast { font-size: 10px; padding: 8px 12px; }
	.hv__core-label { font-size: 9px; bottom: -28px; }
	.trusted__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
	.trusted__label { max-width: none; }
	.why__cards, .bento, .sol-grid, .sol-grid--3, .sol-grid[class*="cols-"], .arch[class*="cols-"], .res-grid, .case-grid, .ind-grid, .post-grid, .benefit-row, .arch, .timeline, .footer-cols, .form__row { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.stat-card { min-height: 160px; padding: 22px; }
	.mini-card:nth-child(even) { margin: 0; }
	.mini-card { min-height: 0; }
	.bento__card--feature { grid-column: auto; }
	.flow__line { display: none; }
	.flow__steps { grid-template-columns: 1fr; gap: 40px; }
	.flow__step { grid-template-columns: 66px 1fr; justify-items: start; text-align: left; column-gap: 20px; }
	.flow__dot { grid-row: span 3; }
	.flow__n { margin-top: 0; }
	.sol-row { grid-template-columns: 1fr; }
	.sol-row--rev .sol-row__art { order: 0; }
	.blog-strip li a { grid-template-columns: 1fr auto; gap: 8px 16px; }
	.blog-strip time { grid-column: 1 / -1; }
	.h-scroll { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.h-scroll::-webkit-scrollbar { display: none; }
	.ind-card { scroll-snap-align: start; width: 82vw; }
	.partner-cta { grid-template-columns: 1fr; }
	.partner-cta .btn { grid-row: auto; grid-column: auto; justify-self: start; margin-top: 12px; }
	.cta { border-radius: 24px; }
	.footer-mega { margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.js-anim [data-reveal], .js-anim .hero-in { opacity: 1; transform: none; }
}

/* ==========================================================================
   Palette v4 — electric blue → violet → cyan gradient system
   ========================================================================== */
::selection { background: var(--brand-2); color: #fff; }

/* Gradient headline accents */
.sec-title em, .hero__title em, .page-hero__title em, .cta__title em, .big-statement em, .single__title em {
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
	-webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hero__title em, .page-hero__title em { background-size: 200% 100%; animation: grad-shift 8s ease-in-out infinite alternate; }
@keyframes grad-shift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

/* Buttons */
.btn--brand { background: var(--grad); background-size: 160% 100%; background-position: 0% 50%; border: 0; box-shadow: var(--glow); transition: background-position .6s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease); }
.btn--brand:hover { background-position: 100% 50%; box-shadow: 0 18px 50px -10px color-mix(in srgb, var(--brand-2) 85%, transparent); }
.btn--ghost:hover { border-color: var(--brand-3); }
.site-header .btn--dark { background: #fff; color: var(--ink); }
.site-header .btn--dark:hover { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.news-pill b, .hv__core-label { background: var(--grad); }
.news-pill:hover { border-color: var(--brand-2); }

/* Dots, chips, badges */
.eyebrow__dot { background: var(--grad); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-2) 22%, transparent), 0 0 14px var(--brand-2); }
.eyebrow--pill { border-color: color-mix(in srgb, var(--brand-2) 40%, transparent); background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 14%, transparent), color-mix(in srgb, var(--brand-2) 10%, transparent)); }
.ico-badge { background: var(--grad-soft); border-color: color-mix(in srgb, var(--brand-2) 22%, transparent); color: var(--brand-2); }
.ico-badge--dark { background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 22%, transparent), color-mix(in srgb, var(--brand-2) 18%, transparent)); border-color: color-mix(in srgb, var(--brand-2) 30%, transparent); color: var(--brand-3); }
.chip { border-color: color-mix(in srgb, var(--brand-2) 30%, var(--line)); color: var(--brand-2); }
.dark .chip { color: var(--brand-3); border-color: color-mix(in srgb, var(--brand-3) 30%, transparent); }

/* Hero atmosphere */
.hero__glow { background: radial-gradient(circle, color-mix(in srgb, var(--brand-2) 38%, transparent), transparent 60%); opacity: .75; }
.hero__glow::after { background: radial-gradient(circle, color-mix(in srgb, var(--brand) 55%, transparent), transparent 62%); }
.hero::after, .page-hero::after { content: ""; position: absolute; right: 8%; bottom: -220px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--brand-3) 22%, transparent), transparent 65%); pointer-events: none; }
.hero__grid { background-image: linear-gradient(color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px); }
.hero__stat strong span, .hero__stat strong { background: linear-gradient(180deg, #fff 30%, color-mix(in srgb, var(--brand-3) 70%, #fff)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__tags li { border-color: color-mix(in srgb, var(--brand-3) 35%, transparent); color: #d7e4ff; }

/* 3D hub */
.hv__ring--1 { border-color: color-mix(in srgb, var(--brand-3) 30%, transparent); box-shadow: 0 0 90px -20px var(--brand-2) inset; }
.hv__ring--3 { border-color: color-mix(in srgb, var(--brand-2) 70%, transparent); background: radial-gradient(circle, color-mix(in srgb, var(--brand-2) 26%, transparent), transparent 70%); }
.hv__sweep { background: conic-gradient(from 0deg, transparent 0 270deg, color-mix(in srgb, var(--brand) 18%, transparent) 320deg, color-mix(in srgb, var(--brand-3) 32%, transparent) 356deg, transparent 360deg); }
.hv__core-disc { background: radial-gradient(circle at 35% 30%, #3a3fb8, var(--navy) 60%, #04061a); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8), 0 0 0 10px rgba(255, 255, 255, .03), 0 0 90px -6px color-mix(in srgb, var(--brand-2) 75%, transparent), inset 0 2px 0 rgba(255, 255, 255, .18); }
.core__letter { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 18px color-mix(in srgb, var(--brand-3) 50%, transparent)); }
.core__letter::after { background: var(--brand-3); }
.hv__pulse { border-color: color-mix(in srgb, var(--brand-3) 70%, transparent); }
.hv__links .pk { fill: var(--brand-2); filter: drop-shadow(0 0 6px var(--brand-2)); }
.hv__node.is-hit { border-color: var(--brand-3); box-shadow: 0 0 24px -4px var(--brand-3); }
.hv__node.is-hit .hv__node-ico { background: var(--grad); }

/* Section surfaces */
.platform.dark, .industries.dark { background: radial-gradient(900px 500px at 85% 0%, color-mix(in srgb, var(--brand-2) 18%, transparent), transparent 70%), radial-gradient(700px 500px at 0% 100%, color-mix(in srgb, var(--brand) 20%, transparent), transparent 70%), var(--dark-bg); }
.platform__lines span::after { background: linear-gradient(transparent, var(--brand-2), var(--brand-3), transparent); }
.bento__card--feature { background: linear-gradient(160deg, color-mix(in srgb, var(--brand-2) 30%, transparent), color-mix(in srgb, var(--brand) 12%, transparent) 55%, rgba(255, 255, 255, .02)); border-color: color-mix(in srgb, var(--brand-2) 40%, transparent); }
.glow-card::before { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--brand-2) 22%, transparent), transparent 45%); }
.decision code { border-left-color: var(--brand-3); }
.how, .cases, .trusted--light { background: linear-gradient(180deg, #f6f5ff, #eef3ff); }
.mini-card:hover, .arch__item:hover { border-color: color-mix(in srgb, var(--brand-2) 35%, var(--line)); box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--brand-2) 45%, transparent); }
.sol-card::after { background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--brand-2) 12%, transparent), transparent 55%); }
.sol-card:hover .sol-card__ico { background: var(--grad); box-shadow: var(--glow); }
.sol-card:hover h3, .res-card:hover h3, .link-arrow:hover, .blog-strip li a:hover, .footer-cols a:hover { color: var(--brand-2); }
.sol-card__go { background: var(--grad); }
.ind-card:hover { border-color: color-mix(in srgb, var(--brand-3) 50%, transparent); box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--brand-3) 45%, transparent); }
.marquee__item .icon { color: var(--brand-3); }
.trusted--light .marquee__item .icon { color: var(--brand-2); }

/* Process line + dots */
.flow__fill { stroke: url(#axio-flow-grad); }
.flow__step.is-on .flow__dot { background: var(--grad); border-color: transparent; box-shadow: var(--glow); }

/* Stats */
.stat-card:first-child { background: var(--grad); border: 0; box-shadow: var(--glow); }
.stat-card__v { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card__v span { color: inherit; }
.stat-card:first-child .stat-card__v { background: none; color: #fff; }

/* CTA */
.cta.dark { background: radial-gradient(700px 400px at 15% 0%, color-mix(in srgb, var(--brand) 45%, transparent), transparent 70%), radial-gradient(600px 400px at 100% 100%, color-mix(in srgb, var(--brand-2) 45%, transparent), transparent 70%), #070a24; }
.cta__orb { background: radial-gradient(circle, color-mix(in srgb, var(--brand-3) 45%, transparent), transparent 62%); }

/* Timeline, FAQ, forms */
.timeline__item { border-top: 0; position: relative; }
.timeline__item::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad); }
.timeline__year { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.faq__item[open] { border-color: color-mix(in srgb, var(--brand-2) 35%, var(--line)); box-shadow: 0 24px 50px -30px color-mix(in srgb, var(--brand-2) 50%, transparent); }
.faq__item[open] summary i { background: var(--grad); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-2); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-2) 16%, transparent); }
.form-card { border-color: color-mix(in srgb, var(--brand-2) 18%, var(--line)); box-shadow: 0 40px 80px -50px color-mix(in srgb, var(--brand-2) 55%, transparent); }
.ticks .icon, .contact-list .icon { color: var(--brand-2); }
.orbit__core { background: radial-gradient(circle at 35% 30%, #3a3fb8, var(--navy)); box-shadow: 0 0 70px -8px color-mix(in srgb, var(--brand-2) 80%, transparent); }
.orbit__ring::before { background: var(--brand-3); box-shadow: 0 0 14px var(--brand-3); }

/* Header & footer */
.site-header.is-scrolled { background: rgba(6, 8, 26, .72); box-shadow: 0 1px 0 color-mix(in srgb, var(--brand-2) 25%, transparent); }
.brand__word b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-footer.dark { background: radial-gradient(800px 400px at 50% 110%, color-mix(in srgb, var(--brand-2) 22%, transparent), transparent 70%), var(--dark-bg); }
.footer-mega { background: linear-gradient(180deg, color-mix(in srgb, var(--brand-3) 30%, rgba(255, 255, 255, .2)), rgba(255, 255, 255, 0) 85%); -webkit-background-clip: text; background-clip: text; }
.social a:hover { background: var(--grad); border-color: transparent; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }
body.admin-bar .scroll-progress { top: 32px; }

/* ==========================================================================
   v5 — full-width header & footer
   ========================================================================== */
.site-header > .wrap,
.site-footer > .wrap { max-width: none; padding-left: clamp(16px, 3vw, 56px); padding-right: clamp(16px, 3vw, 56px); }
.site-header .nav { margin-left: auto; margin-right: auto; }
.footer-top { grid-template-columns: minmax(260px, 1fr) 3fr; }
.footer-cols--3 { gap: clamp(24px, 4vw, 80px); }
@media (max-width: 1100px) {
	.site-header .nav { margin: 0; }
	.footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   v6 — official Axiomaticas logo in header & footer
   ========================================================================== */
.brand__img--bundled { display: block; width: auto; height: 40px; max-height: none; }
.site-footer .brand__img--bundled { height: 52px; }
.site-header.is-scrolled .brand__img--bundled { height: 36px; }
.brand__img--bundled { transition: height .35s var(--ease), filter .35s; }
.brand:hover .brand__img--bundled { filter: drop-shadow(0 0 14px color-mix(in srgb, var(--brand) 55%, transparent)); }
@media (max-width: 720px) {
	.brand__img--bundled, .site-header.is-scrolled .brand__img--bundled { height: 30px; }
	.site-footer .brand__img--bundled { height: 42px; }
}

/* ==========================================================================
   v7 — footer wordmark in the brand gradient
   ========================================================================== */
.footer-mega {
	background: linear-gradient(100deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text; background-clip: text; color: transparent;
	-webkit-mask-image: linear-gradient(180deg, #000 15%, rgba(0, 0, 0, .55) 60%, transparent 98%);
	mask-image: linear-gradient(180deg, #000 15%, rgba(0, 0, 0, .55) 60%, transparent 98%);
	background-size: 100% 100%;
	opacity: .8;
}

/* ==========================================================================
   v8 — floating WhatsApp & call buttons
   ========================================================================== */
.float-contact { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(24px, env(safe-area-inset-bottom)); z-index: 150; display: flex; flex-direction: column; gap: 14px; animation: float-in .8s var(--ease); }
@keyframes float-in { from { opacity: 0; transform: translateY(30px) scale(.8); } to { opacity: 1; transform: none; } }
.float-contact__btn { position: relative; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .55); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.float-contact__btn .icon { width: 27px; height: 27px; }
.float-contact__btn:hover { transform: translateY(-3px) scale(1.06); }
.float-contact__btn--wa { background: linear-gradient(145deg, #3ee37a, #1faa52); box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .75); }
.float-contact__btn--wa::before, .float-contact__btn--wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: wa-pulse 2.4s ease-out infinite; pointer-events: none; }
.float-contact__btn--wa::after { animation-delay: 1.2s; }
@keyframes wa-pulse { from { transform: scale(1); opacity: .8; } to { transform: scale(1.7); opacity: 0; } }
.float-contact__btn--call { background: var(--grad); box-shadow: var(--glow); }
.float-contact__btn--call .icon { animation: ring 3.2s ease-in-out infinite; }
@keyframes ring { 0%, 70%, 100% { transform: rotate(0); } 74% { transform: rotate(-14deg); } 78% { transform: rotate(12deg); } 82% { transform: rotate(-10deg); } 86% { transform: rotate(8deg); } 90% { transform: rotate(0); } }
.float-contact__tip { position: absolute; right: calc(100% + 14px); top: 50%; transform: translate(8px, -50%); white-space: nowrap; font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 10px; background: rgba(10, 14, 36, .92); color: #fff; border: 1px solid var(--dark-line); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .25s, transform .3s var(--ease), visibility .25s; pointer-events: none; }
.float-contact__btn:hover .float-contact__tip, .float-contact__btn:focus-visible .float-contact__tip { opacity: 1; visibility: visible; transform: translate(0, -50%); }
.nav-open .float-contact { opacity: 0; visibility: hidden; }
@media (max-width: 720px) {
	.float-contact { right: 14px; bottom: 16px; gap: 12px; }
	.float-contact__btn { width: 52px; height: 52px; }
	.float-contact__btn .icon { width: 24px; height: 24px; }
	.float-contact__tip { display: none; }
}
@media print { .float-contact, .scroll-progress { display: none; } }
@media (prefers-reduced-motion: reduce) { .float-contact__btn--wa::before, .float-contact__btn--wa::after, .float-contact__btn--call .icon { animation: none; } }
