/* ==============================================================
   DMNT — Enterprise Digital Growth Partner
   Multi-page design system. Futuristic, premium, dark-first.
   Author: DMNT (Senior Web)  ·  v2.0
   ============================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
	/* Surfaces — deep-space layered darkness */
	--bg:        #050308;
	--bg-2:      #08060f;
	--bg-3:      #0d0a18;
	--bg-4:      #120e22;
	--surface:   rgba(255, 255, 255, 0.04);
	--surface-2: rgba(255, 255, 255, 0.07);
	--line:      rgba(146, 109, 246, 0.14);
	--line-2:    rgba(146, 109, 246, 0.32);

	/* Accents */
	--violet:    #8b5cf6;
	--violet-1:  #a78bfa;
	--violet-2:  #c4b5fd;
	--purple:    #7c3aed;
	--indigo:    #6366f1;
	--blue:      #4f7cff;
	--cyan:      #38bdf8;
	--pink:      #d946ef;

	/* Text */
	--ink:       #f4f2fb;
	--ink-soft:  #cdc7de;
	--muted:     #968ead;
	--muted-2:   #6b6483;

	/* Brand gradients */
	--grad:      linear-gradient(120deg, #8b5cf6, #6366f1 50%, #4f7cff);
	--grad-2:    linear-gradient(135deg, #c4b5fd, #8b5cf6 45%, #6366f1);
	--grad-text: linear-gradient(100deg, #e9d5ff, #a78bfa 40%, #6d7dff);
	--grad-warm: linear-gradient(120deg, #d946ef, #8b5cf6 60%, #6366f1);

	/* Glow / shadow */
	--glow:      0 0 50px rgba(124, 58, 237, 0.5);
	--glow-soft: 0 0 80px rgba(124, 58, 237, 0.28);
	--shadow:    0 30px 80px -30px rgba(0, 0, 0, 0.85);
	--shadow-sm: 0 14px 40px -20px rgba(0, 0, 0, 0.7);

	/* Layout */
	--container: 1280px;
	--container-tight: 1040px;
	--radius:    16px;
	--radius-lg: 26px;
	--radius-xl: 34px;
	--header-h:  80px;

	/* Type */
	--font-display: 'Space Grotesk', 'Sora', system-ui, sans-serif;
	--font-body:    'Inter', system-ui, sans-serif;

	/* Motion */
	--ease:      cubic-bezier(0.22, 1, 0.36, 1);
	--ease-2:    cubic-bezier(0.65, 0, 0.35, 1);
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: -0.02em; }
::selection { background: rgba(168, 85, 247, 0.45); color: #fff; }

:focus-visible { outline: 2px solid var(--violet-1); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.container--tight { max-width: var(--container-tight); }
section { position: relative; padding-block: clamp(4.5rem, 10vw, 9rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* --------------------------- Typography --------------------------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-family: var(--font-display); font-size: 0.74rem; font-weight: 600;
	letter-spacing: 0.24em; text-transform: uppercase; color: var(--violet-1);
	margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: linear-gradient(90deg, var(--violet), transparent); }
.eyebrow--center::after { content: ''; width: 26px; height: 1px; background: linear-gradient(270deg, var(--violet), transparent); }

.pill {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.5rem 1.1rem; border-radius: 100px;
	border: 1px solid var(--line-2); background: rgba(124, 58, 237, 0.08);
	font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet-1);
	margin-bottom: 1.25rem;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet-1); box-shadow: 0 0 10px var(--violet); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.h1 { font-size: clamp(2.4rem, 6.2vw, 5rem); }
.h2 { font-size: clamp(1.9rem, 4.4vw, 3.4rem); }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3.3rem); margin-bottom: 1.1rem; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 62ch; }
.lead strong { color: var(--ink); font-weight: 600; }
.text-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* ----------------------------- Buttons ---------------------------- */
.btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
	font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
	padding: 1rem 1.9rem; border-radius: 12px;
	transition: transform 0.3s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
	white-space: nowrap; overflow: hidden;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); position: relative; z-index: 1; }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { padding: 0.62rem 1.2rem; font-size: 0.84rem; border-radius: 10px; }
.btn--lg { padding: 1.1rem 2.3rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary { color: #fff; background: var(--grad); background-size: 160% 100%; background-position: 0% 0%; box-shadow: 0 12px 34px -10px rgba(124,58,237,0.75), inset 0 0 0 1px rgba(255,255,255,0.14); transition: transform 0.3s var(--ease), box-shadow 0.35s var(--ease), background-position 0.5s var(--ease); }
.btn--primary:hover { transform: translateY(-2px); background-position: 100% 0%; box-shadow: 0 18px 44px -12px rgba(124,58,237,0.95), var(--glow); }
/* premium shine sweep on hover — replaces the magnetic drift */
.btn--primary::after { content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-22deg); transition: left 0.6s var(--ease); pointer-events: none; }
.btn--primary:hover::after { left: 150%; }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-2); background: rgba(139,92,246,0.05); }
.btn--ghost:hover { background: rgba(139,92,246,0.13); transform: translateY(-3px); box-shadow: var(--glow-soft); }
.btn--dark { color: #fff; background: #15101f; border: 1px solid var(--line); }
.btn--dark:hover { background: var(--purple); transform: translateY(-3px); box-shadow: var(--glow-soft); }
.btn--white { color: #1a1330; background: #fff; }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -12px rgba(255,255,255,0.3); }

/* Magnetic helper */
.magnetic { display: inline-flex; }

/* ----------------------- Background effects ----------------------- */
.fx { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.blob--v { background: radial-gradient(circle, rgba(124,58,237,0.85), transparent 70%); }
.blob--i { background: radial-gradient(circle, rgba(79,124,255,0.6), transparent 70%); }
.blob--p { background: radial-gradient(circle, rgba(217,70,239,0.45), transparent 70%); }

.grid-fx {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(139,92,246,0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139,92,246,0.055) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 25%, transparent 75%);
}

/* Kinetic grid (interactive canvas — reacts to cursor & clicks) */
.kinetic-grid {
	position: absolute; inset: 0; width: 100%; height: 100%;
	z-index: 0; pointer-events: none; display: block;
	mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, #000 35%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, #000 35%, transparent 80%);
}
.noise {
	position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Animated mesh (hero) */
.mesh { position: absolute; inset: -20%; z-index: 0; pointer-events: none; filter: blur(60px); opacity: 0.9; }
.mesh span { position: absolute; width: 50vw; height: 50vw; border-radius: 50%; }
.mesh span:nth-child(1) { background: radial-gradient(circle, rgba(124,58,237,0.7), transparent 60%); top: -5%; left: 5%; animation: drift1 18s var(--ease-2) infinite alternate; }
.mesh span:nth-child(2) { background: radial-gradient(circle, rgba(79,124,255,0.5), transparent 60%); top: 10%; right: 0; animation: drift2 22s var(--ease-2) infinite alternate; }
.mesh span:nth-child(3) { background: radial-gradient(circle, rgba(217,70,239,0.35), transparent 60%); bottom: -10%; left: 30%; animation: drift3 26s var(--ease-2) infinite alternate; }
@keyframes drift1 { to { transform: translate(12%, 16%) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-14%, 10%) scale(1.1); } }
@keyframes drift3 { to { transform: translate(10%, -12%) scale(1.2); } }

/* =============================== HEADER ============================ */
.header {
	position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--header-h);
	display: flex; align-items: center;
	border-bottom: 1px solid transparent;
	transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, height 0.35s;
}
.header.is-scrolled { background: rgba(6,4,12,0.78); backdrop-filter: blur(20px) saturate(1.4); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }

/* Brand */
.brand { position: relative; display: inline-flex; flex-direction: column; line-height: 1; }
.brand__text { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; letter-spacing: 0.14em; font-style: italic; color: #fff; transform: skewX(-7deg); }
.brand__swoosh { height: 3px; width: 100%; margin-top: 3px; border-radius: 4px; background: linear-gradient(90deg, transparent, var(--violet), var(--blue)); box-shadow: 0 0 14px rgba(139,92,246,0.85); transform: skewX(-24deg); }
.brand--lg .brand__text { font-size: 2.5rem; }

/* Nav */
.nav__list { display: flex; align-items: center; gap: 0.15rem; }
.nav__link {
	display: inline-flex; align-items: center; gap: 0.35rem;
	padding: 0.55rem 0.95rem; font-size: 0.94rem; font-weight: 500; color: var(--ink-soft);
	border-radius: 9px; transition: color 0.2s, background 0.2s;
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link.is-active { background: rgba(139,92,246,0.13); }
.nav__caret { width: 10px; height: 6px; transition: transform 0.25s; }
.nav__item { position: relative; }
.nav__item.has-dropdown:hover > .nav__link .nav__caret { transform: rotate(180deg); }
.dropdown {
	position: absolute; top: calc(100% + 14px); left: 0; min-width: 240px; padding: 0.5rem;
	background: rgba(13,9,24,0.97); backdrop-filter: blur(20px);
	border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav__item.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.85rem; border-radius: 10px; font-size: 0.9rem; color: var(--ink-soft); transition: background 0.18s, color 0.18s; }
.dropdown a:hover { background: rgba(139,92,246,0.15); color: #fff; }
.dropdown a span { font-size: 1.1rem; }

.header__actions { display: flex; align-items: center; gap: 0.8rem; }
.lang { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); padding: 0.42rem 0.65rem; border-radius: 9px; border: 1px solid var(--line); background: transparent; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.lang:hover { border-color: var(--line-2); color: var(--ink); }
.lang__flag { width: 20px; height: 14px; border-radius: 3px; background: linear-gradient(to bottom, #fdb913 0 33%, #006a44 33% 66%, #c1272d 66%); display: inline-block; flex-shrink: 0; }
.lang__flag--en { background: #00247d; position: relative; overflow: hidden; }
.lang__flag--en::before { content: ''; position: absolute; inset: 0; background:
	linear-gradient(to bottom, transparent 40%, #fff 40% 60%, transparent 60%),
	linear-gradient(to right, transparent 42%, #fff 42% 58%, transparent 58%); }
.lang__flag--en::after { content: ''; position: absolute; inset: 0; background:
	linear-gradient(to bottom, transparent 44%, #cf142b 44% 56%, transparent 56%),
	linear-gradient(to right, transparent 45%, #cf142b 45% 55%, transparent 55%); }
.lang__flag--nl { background: linear-gradient(to bottom, #ae1c28 0 33%, #fff 33% 66%, #21468b 66%); }
.lang__flag--pl { background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50%); }
.lang__flag--ru { background: linear-gradient(to bottom, #fff 0 33%, #0039a6 33% 66%, #d52b1e 66%); }
.lang__caret { width: 9px; height: 6px; opacity: 0.7; transition: transform 0.25s; }

/* Language dropdown */
.lang-switch { position: relative; display: inline-flex; }
.lang-switch.is-open .lang__caret { transform: rotate(180deg); }
.lang-menu {
	position: absolute; top: calc(100% + 0.5rem); right: 0; z-index: 60; min-width: 170px;
	list-style: none; margin: 0; padding: 0.4rem; display: flex; flex-direction: column; gap: 0.15rem;
	background: var(--bg-3, #100a1e); border: 1px solid var(--line-2); border-radius: 12px;
	box-shadow: var(--shadow), 0 0 40px -16px rgba(124,58,237,0.5);
	opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch--up .lang-menu { top: auto; bottom: calc(100% + 0.5rem); transform: translateY(6px); }
.lang-switch--up.is-open .lang-menu { transform: translateY(0); }
.lang-opt {
	display: flex; align-items: center; gap: 0.6rem; width: 100%; padding: 0.55rem 0.7rem;
	border: none; border-radius: 8px; background: transparent; color: var(--text-soft);
	font-family: inherit; font-size: 0.86rem; font-weight: 500; text-align: left; cursor: pointer;
	transition: background 0.15s, color 0.15s;
}
.lang-opt:hover { background: rgba(255,255,255,0.05); color: #fff; }
.lang-opt.is-active { color: #fff; background: rgba(124,58,237,0.14); }
.lang-opt.is-active::after { content: '✓'; margin-left: auto; color: var(--violet-1); font-size: 0.8rem; }
.lang-soon { margin-left: auto; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); padding: 0.12rem 0.4rem; border: 1px solid var(--line); border-radius: 100px; }
.lang-note { position: absolute; top: calc(100% + 0.5rem); right: 0; z-index: 70; white-space: nowrap; padding: 0.5rem 0.8rem; border-radius: 9px; background: var(--bg-3, #100a1e); border: 1px solid var(--line-2); color: var(--text-soft); font-size: 0.78rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; }
.lang-note.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch--up .lang-note { top: auto; bottom: calc(100% + 0.5rem); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 9px; z-index: 210; }
.burger span { width: 25px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
	position: fixed; top: 0; right: 0; z-index: 205; height: 100dvh; width: min(86vw, 380px);
	background: var(--bg-3); border-left: 1px solid var(--line);
	padding: calc(var(--header-h) + 1.2rem) 1.7rem 2rem; transform: translateX(100%);
	transition: transform 0.45s var(--ease); overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 0.3rem; }
.drawer__link { padding: 0.95rem 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); transition: color 0.2s, padding-left 0.2s; }
.drawer__link:hover, .drawer__link.is-active { color: #fff; padding-left: 1rem; }
.drawer__cta { margin-top: 1.5rem; }
.drawer__meta { margin-top: 2rem; color: var(--muted); font-size: 0.9rem; display: grid; gap: 0.5rem; }
.drawer__meta a { color: var(--violet-1); }
.drawer__overlay { position: fixed; inset: 0; z-index: 203; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.drawer__overlay.is-open { opacity: 1; visibility: visible; }

/* ======================== PAGE HERO (inner) ======================= */
.page-hero { padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); text-align: center; overflow: hidden; background: radial-gradient(ellipse 70% 60% at 50% -5%, #18102e 0%, var(--bg) 60%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 860px; margin-inline: auto; }
.page-hero .h1 { text-transform: uppercase; margin-bottom: 1.2rem; }
.page-hero .lead { margin-inline: auto; }
.breadcrumbs {
	display: inline-flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
	margin-bottom: 1.6rem; padding: 0.45rem 1.1rem;
	border: 1px solid var(--line); border-radius: 100px; background: var(--surface);
	color: var(--muted-2); font-size: 0.82rem;
}
.page-hero__inner .breadcrumbs { margin-inline: auto; }
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: var(--violet-1); font-weight: 600; }
.breadcrumbs > *:not(:first-child)::before {
	content: '›'; margin-right: 0.5rem; color: var(--muted-2);
	font-size: 1rem; line-height: 1;
}

/* =============================== HERO ============================= */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: calc(var(--header-h) + 2rem); overflow: hidden; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; width: 100%; }
.hero__title { font-size: clamp(2.1rem, 4.4vw, 3.6rem); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 56ch; margin-bottom: 2.3rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero__trust { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: 0.9rem; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--bg); background: var(--grad); margin-left: -10px; display: grid; place-items: center; font-size: 0.85rem; font-weight: 700; color: #fff; font-family: var(--font-display); }
.hero__avatars span:first-child { margin-left: 0; }
.hero__stars { color: var(--violet-1); }

/* Hero orb visual */
.orb { position: relative; aspect-ratio: 1; max-width: 520px; margin-inline: auto; display: grid; place-items: center; }
.orb__core { position: absolute; width: 58%; height: 58%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #c4b5fd, #7c3aed 45%, #312060 80%); box-shadow: inset -20px -20px 60px rgba(0,0,0,0.6), 0 0 90px rgba(124,58,237,0.7); animation: float 7s ease-in-out infinite; }
.orb__ring { position: absolute; border-radius: 50%; border: 1px solid var(--line-2); }
.orb__ring--1 { inset: 0; animation: spin 26s linear infinite; }
.orb__ring--2 { inset: 12%; border-style: dashed; border-color: rgba(146,109,246,0.25); animation: spin 18s linear infinite reverse; }
.orb__ring--3 { inset: 24%; border-color: rgba(79,124,255,0.3); animation: spin 34s linear infinite; }
.orb__dot { position: absolute; top: 50%; left: -5px; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.orb__ring--1 .orb__dot { top: -6px; left: 50%; background: var(--violet-1); box-shadow: 0 0 18px var(--violet); }
.orb__chip { position: absolute; padding: 0.6rem 0.95rem; border-radius: 12px; background: rgba(13,9,24,0.85); backdrop-filter: blur(12px); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); font-size: 0.82rem; display: flex; align-items: center; gap: 0.5rem; animation: float 6s ease-in-out infinite; }
.orb__chip strong { font-family: var(--font-display); color: #fff; }
.orb__chip--1 { top: 8%; right: -4%; animation-delay: -1s; }
.orb__chip--2 { bottom: 14%; left: -8%; animation-delay: -3s; }
.orb__chip--3 { bottom: -2%; right: 12%; animation-delay: -2s; }
.orb__chip i { font-style: normal; width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 10px #34d399; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============================== STATS ============================= */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.stat { padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); position: relative; overflow: hidden; }
.stat::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--grad); opacity: 0.7; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; }

/* ============================= MARQUEE =========================== */
.marquee { overflow: hidden; 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: inline-flex; gap: 3.5rem; white-space: nowrap; animation: marquee 40s linear infinite; align-items: center; }
.marquee__track span { color: var(--violet-1); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; opacity: 0.7; transition: opacity 0.2s; }
.marquee__track span:hover { opacity: 1; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================== CARDS: spotlight + tilt =================== */
.card {
	position: relative; padding: 2rem 1.85rem; border-radius: var(--radius);
	background: linear-gradient(165deg, rgba(20,15,36,0.7), rgba(9,6,17,0.6));
	border: 1px solid var(--line); overflow: hidden;
	transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::after { /* cursor spotlight */
	content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(124,58,237,0.18), transparent 60%);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow), var(--glow-soft); }
.card:hover::after { opacity: 1; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 15px; font-size: 1.6rem; background: rgba(124,58,237,0.14); border: 1px solid var(--line-2); box-shadow: 0 0 26px rgba(124,58,237,0.32); margin-bottom: 1.4rem; position: relative; z-index: 1; }
.card__title { font-size: 1.22rem; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.card__desc { color: var(--muted); font-size: 0.97rem; position: relative; z-index: 1; }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--violet-1); position: relative; z-index: 1; transition: gap 0.25s; }
.card__link:hover { gap: 0.7rem; color: var(--violet-2); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.2rem; }

/* ============================ INDUSTRIES ========================= */
.industry {
	position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
	padding: 1.8rem; border-radius: var(--radius-lg); overflow: hidden;
	border: 1px solid var(--line); background: var(--bg-3);
	transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.industry::before { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--ind-grad, linear-gradient(160deg, rgba(124,58,237,0.5), transparent 70%)); opacity: 0.5; transition: opacity 0.4s; }
.industry::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(5,3,8,0.92) 10%, transparent 70%); }
.industry:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow), var(--glow-soft); }
.industry:hover::before { opacity: 0.85; }
.industry__icon { position: absolute; top: 1.6rem; left: 1.6rem; font-size: 2.4rem; z-index: 2; filter: drop-shadow(0 0 16px rgba(168,85,247,0.7)); }
.industry__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s var(--ease); }
.industry:hover .industry__bg { transform: scale(1.06); }
.industry__body { position: relative; z-index: 2; }
.industry__name { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.industry__desc { color: var(--ink-soft); font-size: 0.94rem; }
.industry__tag { position: absolute; top: 1.7rem; right: 1.6rem; z-index: 2; font-size: 0.72rem; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet-2); padding: 0.3rem 0.7rem; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(0,0,0,0.3); }

/* ============================== PROCESS ========================== */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.3rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); counter-increment: step; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; }
.step::before { content: '0' counter(step); font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.55; }
.step:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-sm), var(--glow-soft); }
.step__title { font-size: 1.15rem; margin: 0.8rem 0 0.5rem; }
.step__desc { color: var(--muted); font-size: 0.92rem; }
.step__line { position: absolute; top: 3.4rem; right: -0.65rem; width: 1.3rem; height: 1px; background: var(--line-2); }

/* ===================== FLOATING CONTACT ACTIONS ================= */
.float-actions { position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 200; display: flex; flex-direction: column; gap: 0.7rem; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 26px -8px rgba(0,0,0,0.6); transition: transform 0.2s var(--ease), box-shadow 0.2s; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab:active { transform: scale(0.97); }
.fab svg { width: 28px; height: 28px; }
.fab--wa { background: #25d366; }
.fab--wa:hover { box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7); }
.fab--call { background: var(--grad); position: relative; }
.fab--call svg { width: 24px; height: 24px; }
.fab--call:hover { box-shadow: 0 12px 30px -8px rgba(124,58,237,0.8); }
.fab--call::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(124,58,237,0.6); animation: fabPulse 2.4s ease-out infinite; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .fab--call::before { animation: none; display: none; } }
@media (max-width: 560px) { .fab { width: 50px; height: 50px; } .fab svg { width: 25px; height: 25px; } }

/* Subtle animated grid + drifting glow background (process, services, testimonials, footer) */
#process, #services, #testimonials, .footer { position: relative; overflow: hidden; }
#process > .container, #services > .container, #testimonials > .container, .footer > .container { position: relative; z-index: 1; }
#process::before, #services::before, #testimonials::before, .footer::before {
	content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(146,109,246,0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(146,109,246,0.07) 1px, transparent 1px);
	background-size: 48px 48px;
	-webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 45%, #000 28%, transparent 78%);
	mask-image: radial-gradient(ellipse 72% 62% at 50% 45%, #000 28%, transparent 78%);
}
#process::after, #services::after, #testimonials::after, .footer::after {
	content: ''; position: absolute; z-index: 0; pointer-events: none;
	width: 620px; height: 620px; max-width: 90%; top: 50%; left: 50%;
	background: radial-gradient(circle, rgba(124,58,237,0.16), rgba(79,124,255,0.06) 45%, transparent 62%);
	animation: procGlow 16s ease-in-out infinite;
}
#services::after { animation-delay: -5s; }
#testimonials::after { animation-delay: -9s; }
.footer::after { animation-delay: -12s; }
@keyframes procGlow {
	0%, 100% { transform: translate(-58%, -54%) scale(1); opacity: 0.65; }
	50%      { transform: translate(-42%, -46%) scale(1.18); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { #process::after, #services::after, #testimonials::after, .footer::after { animation: none; transform: translate(-50%, -50%); } }

/* ======================= SPLIT FEATURE ROWS ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.feature-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(124,58,237,0.14); border: 1px solid var(--line-2); font-size: 1rem; }
.feature-list strong { display: block; font-family: var(--font-display); font-weight: 600; color: var(--ink); margin-bottom: 0.15rem; }
.feature-list span { color: var(--muted); font-size: 0.93rem; }

/* Dashboard visual */
.panel { position: relative; padding: 1.8rem; border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(20,14,36,0.92), rgba(8,5,14,0.92)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.panel--bordered::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(168,85,247,0.55), transparent 40%, transparent 60%, rgba(79,124,255,0.45)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.panel__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.metric { padding: 1.1rem 1.2rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.metric__label { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.metric__value { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; }
.metric__value--accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 120px; padding-top: 1rem; }
.bars i { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad); opacity: 0.85; animation: grow 1.2s var(--ease) backwards; }
@keyframes grow { from { height: 0 !important; opacity: 0; } }

/* ============================ CASE CARDS ========================= */
.case { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.case:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow), var(--glow-soft); }
.case__media { aspect-ratio: 16/10; display: grid; place-items: center; font-size: 3rem; background: radial-gradient(circle at 60% 35%, rgba(124,58,237,0.4), rgba(9,6,18,0.6)); border-bottom: 1px solid var(--line); position: relative; }
.case__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s var(--ease); }
.case:hover .case__img { transform: scale(1.06); }
.case__tag { z-index: 2; position: absolute; top: 1rem; left: 1rem; font-size: 0.72rem; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet-2); padding: 0.32rem 0.8rem; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(0,0,0,0.4); }
.case__body { padding: 1.6rem; }
.case__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.case__desc { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.2rem; }
.case__metrics { display: flex; gap: 1.6rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.case__metric strong { display: block; font-family: var(--font-display); font-size: 1.5rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case__metric span { color: var(--muted); font-size: 0.8rem; }

/* ============================== VALUES =========================== */
.value { padding: 1.8rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); transition: transform 0.3s var(--ease), border-color 0.3s; }
.value:hover { transform: translateY(-5px); border-color: var(--line-2); }
.value__num { font-family: var(--font-display); color: var(--violet-1); font-size: 0.85rem; letter-spacing: 0.1em; }
.value__title { font-size: 1.2rem; margin: 0.6rem 0 0.5rem; }
.value__desc { color: var(--muted); font-size: 0.94rem; }

/* ============================== TEAM ============================= */
.member { text-align: center; }
.member__photo { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; display: grid; place-items: center; font-size: 3.5rem; background: linear-gradient(160deg, rgba(124,58,237,0.35), rgba(9,6,18,0.7)); border: 1px solid var(--line); margin-bottom: 1rem; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.member:hover .member__photo { transform: translateY(-5px); box-shadow: var(--glow-soft); }
.member__name { font-size: 1.15rem; }
.member__role { color: var(--violet-1); font-size: 0.88rem; }

/* ============================ ACCORDION ========================= */
.accordion { max-width: 920px; margin-inline: auto; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0.5rem; font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 2vw, 1.2rem); color: var(--ink); cursor: pointer; list-style: none; transition: color 0.2s; }
.accordion__head::-webkit-details-marker { display: none; }
.accordion__head:hover { color: var(--violet-1); }
.accordion__icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--violet-1); transition: transform 0.3s, background 0.3s, color 0.3s; }
.accordion__item[open] .accordion__icon { transform: rotate(90deg); background: var(--purple); color: #fff; }
.accordion__body { padding: 0 0.5rem 1.6rem; color: var(--muted); max-width: 80ch; }

/* ===================== HOMEPAGE FAQ + GEO BAND ================== */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-grid .section-head { position: sticky; top: 100px; }
.faq-grid .accordion { max-width: none; margin: 0; }
.faq-grid__cta { margin-top: 1.8rem; }
@media (max-width: 860px) {
	.faq-grid { grid-template-columns: 1fr; gap: 1.6rem; }
	.faq-grid .section-head { position: static; }
}

.geo-band { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem 1rem; margin-top: 3.5rem; padding: 1.4rem 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); }
.geo-band__label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.geo-band__list { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; margin: 0; padding: 0; }
.geo-band__list li { font-size: 0.82rem; color: var(--violet-1); padding: 0.34rem 0.85rem; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(124,58,237,0.06); }

/* =========================== TESTIMONIALS ======================= */
.tsplit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.checklist { display: grid; gap: 0.7rem; margin: 1.6rem 0; }
.checklist li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink-soft); }
.checklist li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(124,58,237,0.18); border: 1px solid var(--line-2); color: var(--violet-1); font-size: 0.75rem; flex-shrink: 0; }
.slider { position: relative; min-height: 300px; }
.review { position: absolute; inset: 0; padding: 2.2rem; border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(26,15,51,0.72), rgba(10,6,20,0.85)); border: 1px solid var(--line-2); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.98); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s; }
.review.is-active { opacity: 1; visibility: visible; transform: none; position: relative; }
.review__stars { color: var(--violet-1); font-size: 1.2rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review__text { color: var(--ink); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.6rem; }
.review__author { display: flex; flex-direction: column; }
.review__author strong { font-family: var(--font-display); font-size: 1.05rem; }
.review__author span { color: var(--muted); font-size: 0.85rem; }
.review__tags { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.review__tags span { font-size: 0.78rem; padding: 0.35rem 0.8rem; border-radius: 100px; background: rgba(124,58,237,0.12); border: 1px solid var(--line); color: var(--ink-soft); }
.slider__controls { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.slider__btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--ink); font-size: 1.5rem; line-height: 1; background: var(--surface); transition: background 0.25s, transform 0.25s, box-shadow 0.25s; }
.slider__btn:hover { background: var(--purple); transform: translateY(-2px); box-shadow: var(--glow-soft); }
.slider__dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.4rem; }
.slider__dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: width 0.3s, background 0.3s; }
.slider__dots button.is-active { width: 26px; border-radius: 100px; background: var(--violet); }

/* ============================ CTA BAND ========================== */
.cta-band { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem); border-radius: var(--radius-xl); border: 1px solid var(--line-2); background: linear-gradient(135deg, rgba(26,15,51,0.82), rgba(10,6,20,0.86)), url("../img/cta-banner.png") center / cover no-repeat; text-align: center; }
.cta-band__content { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.cta-band .h2 { text-transform: uppercase; margin-bottom: 1.1rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 1.9rem; }

/* ============================ CONTACT =========================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-list { display: grid; gap: 0.9rem; margin-top: 2rem; }
.contact-list li { display: flex; align-items: center; gap: 0.85rem; color: var(--ink-soft); }
.contact-list .ico { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(124,58,237,0.14); border: 1px solid var(--line); font-size: 1.05rem; }
.contact-list a:hover { color: var(--violet-1); }
.form { padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { margin-bottom: 0; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: #1c1830; margin-bottom: 0.5rem; }
.field label span { color: #c026d3; }
.field input, .field textarea, .field select { width: 100%; padding: 0.85rem 1rem; border-radius: 10px; border: 1px solid #e2e0ea; background: #f8f7fb; color: #1c1830; font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }
.field textarea { resize: vertical; min-height: 120px; }

/* Service-interest checkboxes (dark contact form) — clean */
.svc-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem; margin-top: 0.4rem; }
.form--apply .field .svc-check { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; padding: 0.8rem 0.95rem; margin: 0; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--text-soft); font-size: 0.9rem; font-weight: 500; line-height: 1.3; cursor: pointer; transition: border-color 0.18s, background 0.18s, color 0.18s; }
.form--apply .field .svc-check input { order: 2; }
.svc-check:hover { border-color: var(--line-2); background: rgba(255,255,255,0.03); }
.form--apply .field .svc-check input {
	appearance: none; -webkit-appearance: none; margin: 0; padding: 0; flex-shrink: 0;
	width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line-2);
	background: rgba(255,255,255,0.04); cursor: pointer; display: grid; place-content: center;
	transition: background 0.18s, border-color 0.18s; box-shadow: none;
}
.form--apply .field .svc-check input::before {
	content: ''; width: 9px; height: 5px; margin-top: -2px;
	border-left: 2px solid #fff; border-bottom: 2px solid #fff;
	transform: rotate(-45deg) scale(0); transition: transform 0.16s var(--ease);
}
.form--apply .field .svc-check input:checked { background: var(--violet); border-color: var(--violet); }
.form--apply .field .svc-check input:checked::before { transform: rotate(-45deg) scale(1); }
.svc-check:has(input:checked) { border-color: var(--line-2); background: rgba(124,58,237,0.08); color: #fff; }
@media (max-width: 560px) { .svc-checks { grid-template-columns: 1fr; } }
.form__submit { margin-top: 1.4rem; }
.form__status { margin-top: 1rem; font-size: 0.9rem; text-align: center; }
.form__status.is-ok { color: #059669; }
.form__status.is-err { color: #dc2626; }

/* ============================== FOOTER ========================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 7vw, 5.5rem) 1.6rem; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; position: relative; z-index: 2; }
.footer__about { max-width: 320px; }
.footer__about p { color: var(--muted); font-size: 0.95rem; margin: 1.2rem 0 1.5rem; }
.footer__social { display: flex; gap: 0.7rem; }
.social { width: 42px; height: 42px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); transition: background 0.25s, transform 0.25s, color 0.25s, box-shadow 0.25s; }
.social:hover { background: var(--purple); color: #fff; transform: translateY(-3px); box-shadow: var(--glow-soft); }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.2rem; }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { color: var(--ink-soft); font-size: 0.94rem; transition: color 0.2s, padding-left 0.2s; }
.footer__col a:hover { color: var(--violet-1); padding-left: 4px; }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.85rem; position: relative; z-index: 2; }

/* ========================= Reveal & motion ====================== */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js [data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-stagger].is-visible > * { opacity: 1; transform: none; }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: screen; transform: translate(-50%, -50%); }
.cursor-dot { width: 7px; height: 7px; background: var(--violet-1); transition: opacity 0.2s; }
.cursor-ring { width: 38px; height: 38px; border: 1px solid var(--line-2); transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.2s; }
.cursor-ring.is-hover { width: 58px; height: 58px; background: rgba(139,92,246,0.12); border-color: transparent; }
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

/* Scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300; background: var(--grad); box-shadow: 0 0 12px rgba(124,58,237,0.8); transition: width 0.1s linear; }

/* ============================ Responsive ======================== */
@media (max-width: 1080px) {
	.stats { grid-template-columns: repeat(2, 1fr); }
	.process, .grid-4 { grid-template-columns: repeat(2, 1fr); }
	.footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.footer__about { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 980px) {
	.hero__inner, .split, .tsplit, .contact-grid { grid-template-columns: 1fr; }
	.split--rev .split__media { order: -1; }
	.split__media { order: -1; }
	.hero__content { order: -1; }
	.tsplit .testimonials__slider, .tsplit > *:last-child { order: -1; }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
	.step__line { display: none; }
}
@media (max-width: 860px) {
	.nav, .header__cta { display: none; }
	.burger { display: flex; }
}
@media (max-width: 640px) {
	:root { --header-h: 66px; }
	.grid-3, .grid-2, .grid-4, .process, .stats, .panel__row, .form__grid { grid-template-columns: 1fr; }
	.hero__cta .btn { width: 100%; }
	.footer__grid { grid-template-columns: 1fr 1fr; }
	.section-head--center { text-align: left; }
	.section-head--center .lead, .section-head--center .eyebrow { margin-inline: 0; }
	.cta-band { padding: 2.2rem 1.4rem; }
	.orb__chip { display: none; }
}
@media (max-width: 460px) {
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.4rem; }
	.footer__about { grid-column: 1 / -1; }
	.brand__text { font-size: 1.35rem; }
}

/* ============================== ICONS =========================== */
.icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.icon svg { width: 1.5rem; height: 1.5rem; display: block; }
.card__icon svg, .industry__icon svg, .ico svg, .member__photo svg,
.case__media .icon svg, .value__num svg, .dropdown a span svg, .social svg { transition: transform 0.35s var(--ease); }

.card__icon { color: var(--violet-1); }
.card__icon svg { width: 27px; height: 27px; }
.card:hover .card__icon svg { transform: scale(1.1) rotate(-4deg); }

.industry__icon { color: var(--violet-1); }
.industry__icon svg { width: 30px; height: 30px; }
.industry:hover .industry__icon svg { transform: translateY(-4px) scale(1.06); }

.ico { color: var(--violet-1); }
.ico svg { width: 19px; height: 19px; }
.feature-list li:hover .ico svg, .contact-list li:hover .ico svg { transform: scale(1.14); }

.member__photo { color: var(--violet-1); }
.member__photo svg { width: 58px; height: 58px; }
.member:hover .member__photo svg { transform: translateY(-5px) scale(1.05); }

.case__media .icon { color: var(--violet-1); display: grid; place-items: center; }
.case__media .icon svg { width: 48px; height: 48px; }
.case:hover .case__media .icon svg { transform: scale(1.08); }

.value__num { color: var(--violet-1); display: inline-flex; align-items: center; }
.value__num svg { width: 30px; height: 30px; }

.dropdown a span { color: var(--violet-1); display: inline-flex; }
.dropdown a span svg { width: 18px; height: 18px; }

.social { color: var(--ink-soft); }
.social svg { width: 18px; height: 18px; }
.social:hover { color: #fff; }

/* ===================== LOTTIE (self-authored) =================== */
.lottie-pulse { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; pointer-events: none; }
.lottie-pulse svg { width: 92% !important; height: 92% !important; }
/* CSS fallback rings (shown until lottie mounts) */
.lottie-pulse:not(.is-ready)::before, .lottie-pulse:not(.is-ready)::after {
	content: ''; position: absolute; width: 38%; height: 38%; border-radius: 50%;
	border: 2px solid rgba(111, 130, 255, 0.55); animation: lpulse 2.6s ease-out infinite;
}
.lottie-pulse:not(.is-ready)::after { animation-delay: 1.3s; }
@keyframes lpulse { 0% { transform: scale(0.3); opacity: 0.85; } 100% { transform: scale(1.7); opacity: 0; } }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 30px; height: 48px; z-index: 3; opacity: 0.7; pointer-events: none; }
.scroll-cue svg { width: 100%; height: 100%; }
/* CSS fallback chevron */
.scroll-cue:not(.is-ready)::before {
	content: ''; position: absolute; left: 50%; top: 8px; width: 9px; height: 9px;
	border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
	transform: translateX(-50%) rotate(45deg); animation: scrolldown 1.6s ease-in-out infinite;
}
@keyframes scrolldown {
	0% { transform: translateX(-50%) rotate(45deg) translate(0, 0); opacity: 0; }
	40% { opacity: 1; }
	100% { transform: translateX(-50%) rotate(45deg) translate(7px, 7px); opacity: 0; }
}

/* ============================ FILTER CHIPS ====================== */
.filters { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.chip { padding: 0.55rem 1.2rem; border-radius: 100px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; color: var(--muted); border: 1px solid var(--line); background: transparent; transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s; }
.chip:hover { color: #fff; border-color: var(--line-2); }
.chip.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 6px 18px -6px rgba(124, 58, 237, 0.7); }

/* =============================== BLOG =========================== */
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: 1.4rem; }
.post { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, rgba(20, 15, 36, 0.6), rgba(10, 6, 18, 0.6)); border: 1px solid var(--line); transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; }
.post:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.post__media { aspect-ratio: 16 / 9; display: grid; place-items: center; color: var(--violet-1); background: radial-gradient(circle at 60% 35%, rgba(124, 58, 237, 0.35), rgba(9, 6, 18, 0.5)); border-bottom: 1px solid var(--line); }
.post__media .icon svg { width: 42px; height: 42px; }
.post__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.post__cat { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet-1); }
.post__title { font-size: 1.12rem; line-height: 1.3; }
.post__excerpt { color: var(--muted); font-size: 0.92rem; flex-grow: 1; }
.post__link { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--violet-1); }
.post__link:hover { color: var(--violet-2); }

.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 1.3rem; }
.widget { padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.widget h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.3rem; }
.most-read { display: grid; gap: 1rem; }
.most-read a { display: grid; gap: 0.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.most-read a:last-child { border-bottom: 0; padding-bottom: 0; }
.most-read strong { font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--ink); line-height: 1.3; transition: color 0.2s; }
.most-read span { color: var(--muted-2); font-size: 0.8rem; }
.most-read a:hover strong { color: var(--violet-1); }
.widget--cta { background: linear-gradient(160deg, rgba(26, 15, 51, 0.8), rgba(10, 6, 20, 0.85)); border-color: var(--line-2); text-align: center; }
.widget--cta p { color: var(--muted); font-size: 0.92rem; margin: 0 0 1.1rem; }

/* ========================= WORK / PORTFOLIO ==================== */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 1.2rem; }
.work { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.work::before { content: ''; position: absolute; inset: 0; background: var(--work-grad, linear-gradient(150deg, rgba(124, 58, 237, 0.55), transparent 70%)); opacity: 0.6; transition: opacity 0.4s, transform 0.5s var(--ease); }
.work::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5, 3, 8, 0.94) 12%, transparent 65%); }
.work:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow), var(--glow-soft); }
.work:hover::before { opacity: 0.95; transform: scale(1.08); }
.work__logo { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.92); text-transform: uppercase; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); }
.work__cat { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; font-size: 0.7rem; font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet-2); padding: 0.32rem 0.8rem; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(0, 0, 0, 0.4); }
.work__body { position: relative; z-index: 2; }
.work__name { font-size: 1.2rem; margin-bottom: 0.25rem; }
.work__desc { color: var(--ink-soft); font-size: 0.88rem; }

/* ============================ PARTNERS ========================= */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 1.1rem; }
a.partner { color: inherit; text-decoration: none; }
.partner { position: relative; display: block; padding: 1.5rem 2.8rem 1.5rem 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.partner::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--grad); opacity: 0; transition: opacity 0.3s; }
.partner:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow-sm), var(--glow-soft); }
.partner:hover::after { opacity: 1; }
.partner__name { font-size: 1.12rem; color: #fff; margin-bottom: 0.3rem; }
.partner__desc { color: var(--muted); font-size: 0.9rem; }
.partner__ext { position: absolute; top: 1.3rem; right: 1.2rem; color: var(--muted-2); transition: color 0.25s, transform 0.25s var(--ease); }
.partner__ext svg { width: 18px; height: 18px; }
.partner:hover .partner__ext { color: var(--violet-1); transform: translate(2px, -2px); }

@media (max-width: 980px) {
	.blog-layout { grid-template-columns: 1fr; }
	.sidebar { position: static; grid-template-columns: 1fr 1fr; }
	.work-grid, .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.posts-grid, .work-grid, .partners-grid, .sidebar { grid-template-columns: 1fr; }
}

/* ===================== HERO SCENE (right column) =============== */
.hero-scene { position: relative; width: 100%; max-width: 540px; aspect-ratio: 1 / 1; margin-inline: auto; display: grid; place-items: center; transform-style: preserve-3d; }
.scene__aura { position: absolute; width: 80%; height: 80%; border-radius: 50%; background: conic-gradient(from 0deg, rgba(124,58,237,0), rgba(124,58,237,0.55), rgba(79,124,255,0.45), rgba(217,70,239,0.4), rgba(124,58,237,0)); filter: blur(48px); opacity: 0.6; animation: spin 18s linear infinite; }
.scene__pulse { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; pointer-events: none; }
.scene__pulse svg { width: 78% !important; height: 78% !important; }

.scene__orbit { position: absolute; border-radius: 50%; border: 1px solid var(--line); }
.scene__orbit--1 { width: 98%; height: 98%; animation: spin 28s linear infinite; }
.scene__orbit--2 { width: 72%; height: 72%; border-style: dashed; border-color: rgba(146,109,246,0.22); animation: spin 20s linear infinite reverse; }
.sat { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--violet-1); box-shadow: 0 0 16px var(--violet); }
.sat--2 { top: auto; bottom: -5px; left: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }

.dash { position: relative; z-index: 3; width: 76%; padding: 1.4rem 1.45rem; border-radius: 20px; background: linear-gradient(160deg, rgba(22,16,40,0.88), rgba(10,7,20,0.94)); border: 1px solid var(--line-2); box-shadow: var(--shadow), 0 0 60px -10px rgba(124,58,237,0.5); backdrop-filter: blur(12px); }
.dash__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.dash__title { font-family: var(--font-display); font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.dash__live { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; font-weight: 600; color: #34d399; }
.dash__live i { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 8px #34d399; animation: pulse 1.8s infinite; }
.dash__metric { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.6rem; }
.dash__big { font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dash__cap { color: var(--muted); font-size: 0.76rem; }
.chart { position: relative; margin: 0.2rem 0 1rem; }
.chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart__area { fill: url(#dmntArea); opacity: 0; animation: areaIn 1s ease 0.5s forwards; }
.chart__line { fill: none; stroke: url(#dmntLine); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 1.7s var(--ease) 0.2s forwards; }
.chart__dot { fill: #fff; opacity: 0; animation: dotIn 0.3s ease 1.7s forwards, dotGlow 2s ease 2s infinite; }
.dash__channels { display: grid; gap: 0.6rem; }
.chan { display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--ink-soft); }
.chan__bar { height: 6px; border-radius: 6px; background: rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.chan__bar::after { content: ''; position: absolute; inset: 0; width: var(--v, 60%); border-radius: 6px; background: var(--grad); transform-origin: left; animation: barIn 1.2s var(--ease) 0.7s backwards; }
.chan__val { color: var(--muted); font-variant-numeric: tabular-nums; }
.dash__stack { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.dash__stack span { font-family: var(--font-display); font-size: 0.66rem; letter-spacing: 0.02em; padding: 0.25rem 0.6rem; border-radius: 100px; background: rgba(124,58,237,0.12); border: 1px solid var(--line); color: var(--ink-soft); }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes areaIn { to { opacity: 1; } }
@keyframes dotIn { to { opacity: 1; } }
@keyframes dotGlow { 0%, 100% { filter: drop-shadow(0 0 5px var(--violet-1)); } 50% { filter: drop-shadow(0 0 13px var(--violet-1)); } }
@keyframes barIn { from { transform: scaleX(0); } }

.chip-float { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 0.9rem; border-radius: 12px; background: rgba(13,9,24,0.82); backdrop-filter: blur(12px); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); font-size: 0.8rem; color: var(--ink-soft); white-space: nowrap; animation: float 6s ease-in-out infinite; }
.chip-float strong { font-family: var(--font-display); color: #fff; }
.chip-float .gdot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 10px #34d399; }
.chip-float .stars { color: var(--violet-1); letter-spacing: 1px; }
.chip-float__src { color: var(--muted-2); font-size: 0.72rem; }
.chip-float--1 { top: -5%; right: -4%; animation-delay: -1s; }
.chip-float--2 { top: 44%; left: -7%; animation-delay: -3s; }
.chip-float--3 { bottom: -5%; right: -2%; animation-delay: -2s; }
.chip-float--4 { bottom: -6%; left: 12%; animation-delay: -4.2s; }

@media (max-width: 980px) { .hero-scene { max-width: 430px; } }
@media (max-width: 640px) { .hero-scene { max-width: 340px; } .dash { width: 86%; } .chip-float--2, .chip-float--4, .chip-float--1, .chip-float--3 { display: none; } }

/* ========================= PARTICLE SPHERE ===================== */
.sphere-wrap { position: relative; width: 100%; max-width: 520px; aspect-ratio: 1 / 1; margin-inline: auto; }
.sphere-wrap::before { content: ''; position: absolute; inset: 14%; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%); filter: blur(46px); z-index: 0; }
.particle-sphere { position: relative; z-index: 1; width: 100%; height: 100%; display: block; }

/* ============================ JOB POSTING ===================== */
.job-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 880px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.job-hl { padding: 1.1rem 1rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); text-align: center; }
.job-hl span { display: block; color: var(--muted-2); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.job-hl strong { font-family: var(--font-display); color: #fff; font-size: 1.02rem; }
.job-prose { max-width: 820px; margin-inline: auto; }
.job-prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 2.6rem 0 1rem; }
.job-prose h3 { font-size: 1.15rem; margin: 1.8rem 0 0.7rem; color: var(--violet-1); }
.job-prose p { color: var(--muted); margin: 0 0 1.1rem; }
.job-prose strong { color: var(--ink); }
.job-prose a { color: var(--violet-1); text-decoration: underline; }
.job-prose ul { display: grid; gap: 0.6rem; margin: 0 0 1.4rem; }
.job-prose li { position: relative; padding-left: 1.7rem; color: var(--muted); }
.job-prose li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--violet-1); font-weight: 700; }
.job-note { padding: 1.1rem 1.3rem; border-radius: var(--radius); border: 1px solid var(--line-2); background: rgba(124, 58, 237, 0.08); color: var(--text-soft); margin: 1.6rem 0; }
.job-steps { counter-reset: jstep; display: grid; gap: 1rem; margin: 1.4rem 0; }
.job-step { display: flex; gap: 1rem; align-items: flex-start; }
.job-step b { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-family: var(--font-display); font-size: 0.9rem; }

/* File upload field (on white form) */
.field input[type="file"] { border: 1px dashed #cbc6d9; background: #f8f7fb; padding: 0.75rem 0.9rem; border-radius: 9px; cursor: pointer; color: #5b5470; font-size: 0.92rem; }
.field input[type="file"]:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.field input[type="file"]::file-selector-button { margin-right: 0.85rem; border: none; background: var(--purple); color: #fff; padding: 0.5rem 0.95rem; border-radius: 7px; font-family: inherit; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.field input[type="file"]::file-selector-button:hover { background: var(--violet); }
.field .hint { font-size: 0.78rem; color: var(--muted-2); margin-top: 0.35rem; }

/* ===================== APPLICATION FORM (dark glass) ========== */
.form--apply { position: relative; overflow: hidden; background: linear-gradient(165deg, rgba(24,16,42,0.94), rgba(10,7,18,0.96)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: var(--shadow), 0 0 70px -24px rgba(124,58,237,0.55); }
.form--apply::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.form-head { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.4rem; margin-bottom: 1.7rem; border-bottom: 1px solid var(--line); }
.form-head__ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; background: rgba(124,58,237,0.16); border: 1px solid var(--line-2); color: var(--violet-1); box-shadow: 0 0 24px rgba(124,58,237,0.3); }
.form-head__ico svg { width: 24px; height: 24px; }
.form-head h3 { font-size: 1.2rem; }
.form-head p { color: var(--muted); font-size: 0.85rem; margin: 0.15rem 0 0; }

.form--apply .field label { color: var(--text-soft); font-weight: 500; font-size: 0.86rem; margin-bottom: 0.45rem; }
.form--apply .field label span { color: var(--violet-1); }
.form--apply .field input,
.form--apply .field textarea,
.form--apply .apply-select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--ink); border-radius: 11px; padding: 0.85rem 1rem; font-family: inherit; font-size: 0.96rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.form--apply .field input::placeholder,
.form--apply .field textarea::placeholder { color: var(--muted-2); }
.form--apply .field input:focus,
.form--apply .field textarea:focus,
.form--apply .apply-select:focus { outline: none; border-color: var(--violet); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(124,58,237,0.2); }
.form--apply .field textarea { resize: vertical; min-height: 92px; }
.form--apply input[type="date"] { color-scheme: dark; }

.apply-select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23968ead' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 1rem center !important; padding-right: 2.4rem !important; }
.apply-select option { background: #16102a; color: var(--ink); }

.form--apply .field input[type="file"] { border: 1px dashed var(--line-2); background: rgba(255,255,255,0.03); color: var(--muted); padding: 0.85rem 1rem; }
.form--apply .field input[type="file"]:hover { border-color: var(--violet); background: rgba(124,58,237,0.06); }
.form--apply .field input[type="file"]::file-selector-button { margin-right: 0.9rem; border: none; background: var(--grad); color: #fff; padding: 0.5rem 1rem; border-radius: 8px; font-family: inherit; font-weight: 600; cursor: pointer; }

.apply-checks { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.apply-check { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.95rem; border: 1px solid var(--line); border-radius: 100px; color: var(--text-soft); font-size: 0.88rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.apply-check:hover { border-color: var(--line-2); color: #fff; }
.apply-check input { width: 16px; height: 16px; accent-color: var(--violet); cursor: pointer; }
.apply-check:has(input:checked) { background: rgba(124,58,237,0.18); border-color: var(--line-2); color: #fff; }

.form--apply .hint { color: var(--muted-2); }
.form-group-title { grid-column: 1 / -1; font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 0.6rem 0 -0.2rem; }
.form-group-title:not(:first-of-type) { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.form-privacy { text-align: center; color: var(--muted-2); font-size: 0.78rem; margin-top: 1.1rem; }

/* ============== APPLY PAGES: 960px width + creative form ========= */
.apply-page .job-highlights,
.apply-page .job-prose,
.apply-page #forma .section-head,
.apply-page .form--apply { max-width: 960px; margin-inline: auto; }
.apply-page .job-prose { max-width: 960px; }

/* Form section ambient glow */
.apply-page #forma { position: relative; overflow: hidden; }
.apply-page #forma::before {
	content: ''; position: absolute; left: 50%; top: -120px; width: 760px; height: 480px;
	transform: translateX(-50%); pointer-events: none; z-index: 0;
	background: radial-gradient(closest-side, rgba(124,58,237,0.22), transparent 70%);
	filter: blur(8px);
}
.apply-page #forma .container { position: relative; z-index: 1; }

/* The card */
.apply-page .form--apply {
	position: relative;
	padding: clamp(1.6rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem);
	border-radius: 30px;
	background:
		radial-gradient(120% 80% at 0% 0%, rgba(124,58,237,0.12), transparent 55%),
		radial-gradient(120% 90% at 100% 0%, rgba(79,124,255,0.10), transparent 55%),
		linear-gradient(165deg, rgba(24,16,42,0.96), rgba(9,6,16,0.98));
	border: 1px solid var(--line-2);
	box-shadow: var(--shadow), 0 0 90px -28px rgba(124,58,237,0.6);
}
/* Animated gradient top edge */
.apply-page .form--apply::before {
	height: 3px; left: 0; right: 0; top: 0;
	background: linear-gradient(90deg, #8b5cf6, #4f7cff, #d946ef, #8b5cf6);
	background-size: 300% 100%;
	animation: applyEdge 6s linear infinite;
}
@keyframes applyEdge { to { background-position: 300% 0; } }

/* Header block */
.apply-page .form-head { gap: 1.1rem; padding-bottom: 1.6rem; margin-bottom: 2rem; }
.apply-page .form-head__ico {
	width: 56px; height: 56px; border-radius: 16px;
	background: linear-gradient(150deg, rgba(124,58,237,0.35), rgba(79,124,255,0.18));
	border: 1px solid var(--line-2); box-shadow: 0 8px 28px -8px rgba(124,58,237,0.7);
}
.apply-page .form-head h3 { font-size: 1.35rem; letter-spacing: -0.01em; }

/* Fields */
.apply-page .form__grid { gap: 1.25rem 1.4rem; }
.apply-page .field label {
	font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
	letter-spacing: 0.04em; color: var(--text-soft); margin-bottom: 0.55rem;
}
.apply-page .field input,
.apply-page .field textarea,
.apply-page .apply-select {
	border-radius: 13px; padding: 0.95rem 1.1rem; font-size: 0.97rem;
	background: rgba(255,255,255,0.035); border: 1px solid var(--line);
	transition: border-color 0.25s, box-shadow 0.25s, background 0.25s, transform 0.25s;
}
.apply-page .field input:focus,
.apply-page .field textarea:focus,
.apply-page .apply-select:focus {
	transform: translateY(-2px);
	border-color: var(--violet);
	background: rgba(255,255,255,0.07);
	box-shadow: 0 10px 30px -14px rgba(124,58,237,0.8), 0 0 0 3px rgba(124,58,237,0.22);
}
.apply-page .field textarea { min-height: 120px; }

/* File dropzone */
.apply-page .field input[type="file"] {
	border: 1.5px dashed var(--line-2); border-radius: 14px; padding: 1.1rem 1.1rem;
	background: rgba(124,58,237,0.05);
}
.apply-page .field input[type="file"]:hover {
	border-color: var(--violet); background: rgba(124,58,237,0.1);
}

/* Tool checkboxes — clean rows (label left, tick right) */
.apply-page .apply-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; margin-top: 0.4rem; }
@media (max-width: 640px) { .apply-page .apply-checks { grid-template-columns: 1fr; } }
.apply-page .apply-check {
	display: flex; align-items: center; justify-content: space-between; gap: 0.7rem;
	margin: 0; padding: 0.8rem 0.95rem; border: 1px solid var(--line); border-radius: 10px;
	background: transparent; color: var(--text-soft); font-size: 0.9rem; font-weight: 500; line-height: 1.3;
	cursor: pointer; transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.apply-page .apply-check:hover { border-color: var(--line-2); background: rgba(255,255,255,0.03); }
.apply-page .apply-check input {
	appearance: none; -webkit-appearance: none; order: 2; margin: 0; padding: 0; flex-shrink: 0;
	width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line-2);
	background: rgba(255,255,255,0.04); cursor: pointer; display: grid; place-content: center;
	box-shadow: none; transition: background 0.18s, border-color 0.18s;
}
.apply-page .apply-check input::before {
	content: ''; width: 9px; height: 5px; margin-top: -2px;
	border-left: 2px solid #fff; border-bottom: 2px solid #fff;
	transform: rotate(-45deg) scale(0); transition: transform 0.16s var(--ease);
}
.apply-page .apply-check input:checked { background: var(--violet); border-color: var(--violet); }
.apply-page .apply-check input:checked::before { transform: rotate(-45deg) scale(1); }
.apply-page .apply-check:has(input:checked) { border-color: var(--line-2); background: rgba(124,58,237,0.08); color: #fff; }
.apply-page .apply-check input:focus-visible { outline: 2px solid var(--violet-1); outline-offset: 2px; }

/* Submit button with shine sweep */
.apply-page .form--apply .btn--block {
	position: relative; overflow: hidden; margin-top: 2rem;
	padding-block: 1.05rem; font-size: 1.02rem; border-radius: 14px;
}
.apply-page .form--apply .btn--block::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
	transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.apply-page .form--apply .btn--block:hover::after { transform: translateX(120%); }

@media (max-width: 760px) {
	.apply-page .form--apply { border-radius: 22px; }
}

/* ============================ THANK YOU ======================= */
.thanks { min-height: 66vh; display: grid; place-items: center; text-align: center; }
.thanks__inner { max-width: 600px; margin-inline: auto; }
.thanks__icon { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.8rem; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.4); color: #34d399; box-shadow: 0 0 50px rgba(52, 211, 153, 0.35); }
.thanks__icon svg { width: 46px; height: 46px; }

@media (max-width: 760px) { .job-highlights { grid-template-columns: repeat(2, 1fr); } }

/* ========================= GOOGLE REVIEW BADGE ================= */
.g-review { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0.5rem 0.9rem; max-width: 420px; margin: 1.8rem 0; padding: 1rem 1.2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.g-review:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--shadow-sm), var(--glow-soft); }
.g-review__logo { grid-row: span 2; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.g-review__logo svg { width: 24px; height: 24px; }
.g-review__top { display: flex; align-items: center; gap: 0.5rem; }
.g-review__top strong { font-family: var(--font-display); font-size: 1.3rem; color: #fff; line-height: 1; }
.g-review__stars { color: #fbbc05; font-size: 1rem; letter-spacing: 1px; }
.g-review__meta { display: block; color: var(--muted); font-size: 0.8rem; }
.g-review__name { grid-column: 1 / -1; color: var(--text-soft); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; padding-top: 0.6rem; margin-top: 0.2rem; border-top: 1px solid var(--line); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
	.js .reveal, .js [data-stagger] > * { opacity: 1 !important; transform: none !important; }
	.cursor-dot, .cursor-ring { display: none; }
	.scroll-cue { display: none; }
}

/* ===================== WORDPRESS GLUE (DMNT theme) ============== */
.site-main { min-height: 50vh; }
/* Clear the fixed header for pages that don't start with a self-offsetting hero
   (Elementor pages, classic page content, blog/archive). The homepage uses a bare
   <main> and .hero/.page-hero already compensate, so they are unaffected. */
.site-main--offset { padding-top: calc(var(--header-h) + 1.5rem); }
.admin-bar .site-main--offset { padding-top: calc(var(--header-h) + 32px + 1.5rem); }
@media (max-width: 782px) { .admin-bar .site-main--offset { padding-top: calc(var(--header-h) + 46px + 1.5rem); } }
.page-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.entry-content { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; max-width: 820px; }
.entry-content h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 2.4rem 0 1rem; }
.entry-content h3 { font-size: 1.2rem; margin: 1.8rem 0 0.7rem; color: var(--violet-1); }
.entry-content p { margin: 0 0 1.1rem; }
.entry-content a { color: var(--violet-1); text-decoration: underline; }
.entry-content ul, .entry-content ol { margin: 0 0 1.3rem 1.2rem; display: grid; gap: 0.5rem; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.entry-content blockquote { border-left: 3px solid var(--violet); padding-left: 1.2rem; margin: 1.5rem 0; color: var(--muted); }
.card__media img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.pagination .page-numbers { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; padding: 0 0.6rem; margin: 0 0.2rem; border-radius: 10px; border: 1px solid var(--line); color: var(--ink-soft); }
.pagination .page-numbers.current { background: var(--grad); border-color: transparent; color: #fff; }
/* keep fixed header clear of the WP admin bar */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

/* ============================ 404 PAGE ========================== */
.err-hero { min-height: calc(100vh - var(--header-h)); display: grid; align-items: center; }
.err-inner { max-width: 760px; margin-inline: auto; text-align: center; position: relative; z-index: 2; }
.err-num { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; line-height: 1; font-size: clamp(5.5rem, 20vw, 11rem); margin: 0.6rem 0 0.4rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.03em; }
.err-num__o { display: inline-grid; place-items: center; width: clamp(4.4rem, 16vw, 9rem); height: clamp(4.4rem, 16vw, 9rem); color: var(--violet-1); animation: errSpin 9s linear infinite; }
.err-num__o svg { width: 100%; height: 100%; filter: drop-shadow(0 0 24px rgba(124,58,237,0.55)); animation: errGlow 4s ease-in-out infinite; }
.err-num__o svg circle:last-child { transform-origin: center; animation: errDot 2.6s ease-in-out infinite; }
@keyframes errSpin { to { transform: rotate(360deg); } }
@keyframes errGlow { 0%, 100% { filter: drop-shadow(0 0 14px rgba(124,58,237,0.35)); } 50% { filter: drop-shadow(0 0 30px rgba(124,58,237,0.7)); } }
@keyframes errDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.78); opacity: 0.65; } }

/* The two "4" digits ease in, then gently float in opposite phase. */
.err-num > span:not(.err-num__o) { display: inline-block; animation: errIn 0.7s var(--ease) both, errFloat 6s ease-in-out infinite; }
.err-num > span:first-child { animation-delay: 0s, 0.7s; }
.err-num > span:last-child  { animation-delay: 0.12s, 0.7s; animation-direction: normal, alternate-reverse; }
@keyframes errIn { from { opacity: 0; transform: translateY(24px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes errFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.err-inner .lead { margin-inline: auto; margin-bottom: 2rem; }

.err-search { display: flex; gap: 0.6rem; max-width: 460px; margin: 0 auto 1.8rem; }
.err-search input { flex: 1; padding: 0.9rem 1.1rem; border-radius: 13px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.04); color: var(--ink); font-family: inherit; font-size: 0.96rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; }
.err-search input::placeholder { color: var(--muted-2); }
.err-search input:focus { outline: none; border-color: var(--violet); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(124,58,237,0.2); }
.err-search .btn { flex-shrink: 0; }

.err-cta { justify-content: center; margin-bottom: 3rem; }

.err-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; text-align: left; }
.err-link { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.02); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.err-link:hover { border-color: var(--line-2); background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.err-link__icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem; background: rgba(124,58,237,0.12); border: 1px solid var(--line-2); }
.err-link__body { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.err-link__body strong { font-family: var(--font-display); color: #fff; font-size: 0.98rem; }
.err-link__body span { color: var(--muted); font-size: 0.84rem; }
.err-link__arrow { margin-left: auto; color: var(--violet-1); transition: transform 0.2s; }
.err-link:hover .err-link__arrow { transform: translateX(4px); }

@media (max-width: 560px) {
	.err-search { flex-direction: column; }
	.err-search .btn { width: 100%; justify-content: center; }
	.err-links { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.err-num__o,
	.err-num__o svg,
	.err-num__o svg circle:last-child,
	.err-num > span:not(.err-num__o) { animation: none; }
}
